From 381bd1ff4a38e0582618e76ae1bd3696b1b2ff5d Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Mon, 29 Jul 2024 16:16:12 +0200 Subject: [PATCH] Delete left over debug statement (#12567) --- crates/ruff_db/src/files/file_root.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/ruff_db/src/files/file_root.rs b/crates/ruff_db/src/files/file_root.rs index 5939c2cd98eae..3eb64609b6105 100644 --- a/crates/ruff_db/src/files/file_root.rs +++ b/crates/ruff_db/src/files/file_root.rs @@ -101,8 +101,6 @@ impl FileRoots { pub(super) fn at(&self, path: &SystemPath) -> Option { // SAFETY: Guaranteed to succeed because `path` is a UTF-8 that only contains Unicode characters. let normalized_path = path.as_std_path().to_slash().unwrap(); - dbg!(&normalized_path); - dbg!(&self.roots); let entry = self.by_path.at(&normalized_path).ok()?; Some(*entry.value) }