From f0a31f86c7f44e883ee417aff3e46ea39e4e8d22 Mon Sep 17 00:00:00 2001 From: Kay Simmons Date: Mon, 27 Feb 2023 12:06:10 -0800 Subject: [PATCH] remove commented line --- crates/fuzzy/src/paths.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/fuzzy/src/paths.rs b/crates/fuzzy/src/paths.rs index a5ad46b5e7..1cb7174fcc 100644 --- a/crates/fuzzy/src/paths.rs +++ b/crates/fuzzy/src/paths.rs @@ -198,8 +198,6 @@ fn distance_between_paths(path: &Path, relative_to: &Path) -> usize { let mut path_components = path.components(); let mut relative_components = relative_to.components(); - // while path_components.next() == relative_components.next() {} - while path_components .next() .zip(relative_components.next())