rust/hg-core/src/dirstate_tree/dirstate_map.rs
changeset 47477 eb416759af7e
parent 47474 c657beacdf2e
child 47478 ca8121d26732
--- a/rust/hg-core/src/dirstate_tree/dirstate_map.rs	Mon Jun 28 15:41:50 2021 +0200
+++ b/rust/hg-core/src/dirstate_tree/dirstate_map.rs	Mon Jun 28 15:52:10 2021 +0200
@@ -977,18 +977,6 @@
         on_disk::write(self, parents)
     }
 
-    fn set_all_dirs(&mut self) -> Result<(), DirstateError> {
-        // Do nothing, this `DirstateMap` does not a separate `all_dirs` that
-        // needs to be recomputed
-        Ok(())
-    }
-
-    fn set_dirs(&mut self) -> Result<(), DirstateError> {
-        // Do nothing, this `DirstateMap` does not a separate `dirs` that needs
-        // to be recomputed
-        Ok(())
-    }
-
     fn status<'a>(
         &'a mut self,
         matcher: &'a (dyn Matcher + Sync),