Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/base-db/src/input.rs')
-rw-r--r--crates/base-db/src/input.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/crates/base-db/src/input.rs b/crates/base-db/src/input.rs
index 15859e218a..27eb05cd4d 100644
--- a/crates/base-db/src/input.rs
+++ b/crates/base-db/src/input.rs
@@ -500,13 +500,6 @@ impl CrateGraph {
}
}
- // FIXME: this only finds one crate with the given root; we could have multiple
- pub fn crate_id_for_crate_root(&self, file_id: FileId) -> Option<CrateId> {
- let (crate_id, _) =
- self.arena.iter().find(|(_crate_id, data)| data.root_file_id == file_id)?;
- Some(crate_id)
- }
-
pub fn sort_deps(&mut self) {
self.arena
.iter_mut()