Skip to content

Commit

Permalink
Delete left over debug statement (#12567)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaReiser committed Jul 29, 2024
1 parent 2f54d05 commit 381bd1f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions crates/ruff_db/src/files/file_root.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,6 @@ impl FileRoots {
pub(super) fn at(&self, path: &SystemPath) -> Option<FileRoot> {
// 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)
}
Expand Down

0 comments on commit 381bd1f

Please sign in to comment.