From d582f1092b524ed8aff86193928a1c7f871b11cf Mon Sep 17 00:00:00 2001 From: Arlie Davis Date: Fri, 17 Nov 2023 12:54:20 -0800 Subject: [PATCH] x.py fmt --- src/bootstrap/src/core/builder.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/bootstrap/src/core/builder.rs b/src/bootstrap/src/core/builder.rs index de35e97848a..5fd0d6a50ca 100644 --- a/src/bootstrap/src/core/builder.rs +++ b/src/bootstrap/src/core/builder.rs @@ -2178,11 +2178,7 @@ impl<'a> Builder<'a> { } // Only execute if it's supposed to run as default - if desc.default && should_run.is_really_default() { - self.ensure(step) - } else { - None - } + if desc.default && should_run.is_really_default() { self.ensure(step) } else { None } } /// Checks if any of the "should_run" paths is in the `Builder` paths.