Delete left over debug statement (#12567)

This commit is contained in:
Micha Reiser 2024-07-29 16:16:12 +02:00 committed by GitHub
parent 2f54d05d97
commit 381bd1ff4a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)
}