rust/hg-core/src/dirstate/dirstate_map.rs
changeset 48056 cd13d3c2ad2e
parent 48051 98c0408324e6
child 48061 060cd909439f
--- a/rust/hg-core/src/dirstate/dirstate_map.rs	Wed Sep 22 14:54:42 2021 +0200
+++ b/rust/hg-core/src/dirstate/dirstate_map.rs	Wed Sep 22 15:23:03 2021 +0200
@@ -182,22 +182,6 @@
         Ok(())
     }
 
-    pub fn clear_ambiguous_times(
-        &mut self,
-        filenames: Vec<HgPathBuf>,
-        now: i32,
-    ) {
-        for filename in filenames {
-            if let Some(entry) = self.state_map.get_mut(&filename) {
-                if entry.clear_ambiguous_mtime(now) {
-                    self.get_non_normal_other_parent_entries()
-                        .0
-                        .insert(filename.to_owned());
-                }
-            }
-        }
-    }
-
     pub fn non_normal_entries_remove(
         &mut self,
         key: impl AsRef<HgPath>,