diff --git a/crates/ra_batch/src/lib.rs b/crates/ra_batch/src/lib.rs index c1cfb76bce..837fff4dce 100644 --- a/crates/ra_batch/src/lib.rs +++ b/crates/ra_batch/src/lib.rs @@ -22,7 +22,6 @@ type Result = std::result::Result; pub struct BatchDatabase { runtime: salsa::Runtime, interner: Arc, - // file_counter: u32, } impl salsa::Database for BatchDatabase { @@ -83,7 +82,7 @@ impl BatchDatabase { VfsChange::AddFile { .. } | VfsChange::RemoveFile { .. } | VfsChange::ChangeFile { .. } => { - // log::warn!("VFS changed while loading"); + // We just need the first scan, so just ignore these } } } diff --git a/crates/ra_vfs/src/lib.rs b/crates/ra_vfs/src/lib.rs index 2d861f832c..3805be570a 100644 --- a/crates/ra_vfs/src/lib.rs +++ b/crates/ra_vfs/src/lib.rs @@ -162,13 +162,6 @@ impl Vfs { self.roots[root].root.clone() } - pub fn path2root(&self, path: &Path) -> Option { - match self.find_root(path) { - Some((root, _path, _file)) => Some(root), - _ => None, - } - } - pub fn path2file(&self, path: &Path) -> Option { if let Some((_root, _path, Some(file))) = self.find_root(path) { return Some(file);