Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/base-db/src/change.rs')
| -rw-r--r-- | crates/base-db/src/change.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/crates/base-db/src/change.rs b/crates/base-db/src/change.rs index 114b4cbf24..da2fb27571 100644 --- a/crates/base-db/src/change.rs +++ b/crates/base-db/src/change.rs @@ -34,10 +34,6 @@ impl fmt::Debug for FileChange { } impl FileChange { - pub fn new() -> Self { - FileChange::default() - } - pub fn set_roots(&mut self, roots: Vec<SourceRoot>) { self.roots = Some(roots); } |