From f09c706a52a1584e1f1dca46dc40fc5ef7224f7f Mon Sep 17 00:00:00 2001 From: binarycat Date: Thu, 1 Aug 2024 16:38:01 -0400 Subject: [PATCH] remove commented out code --- src/bootstrap/src/core/config/config.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/bootstrap/src/core/config/config.rs b/src/bootstrap/src/core/config/config.rs index 6472e029b9722..776e2c5cb17d7 100644 --- a/src/bootstrap/src/core/config/config.rs +++ b/src/bootstrap/src/core/config/config.rs @@ -516,11 +516,6 @@ impl TargetSelection { /// Path to the file defining the custom target, if any. pub fn filepath(&self) -> Option<&Path> { self.file.as_ref().map(Path::new) - /*if let Some(ref p) = self.file.as_ref { - Some(Path::new(p)) - } else { - None - }*/ } }