rust/hg-core/src/dirstate/entry.rs
changeset 48258 c591944f42c1
parent 48257 f45d35950db6
child 48259 84f6b0c41b90
--- a/rust/hg-core/src/dirstate/entry.rs	Mon Oct 18 19:02:40 2021 +0200
+++ b/rust/hg-core/src/dirstate/entry.rs	Tue Oct 19 22:14:48 2021 +0200
@@ -576,12 +576,13 @@
         (self.state().into(), self.mode(), self.size(), self.mtime())
     }
 
-    pub fn mtime_is_ambiguous(&self, now: i32) -> bool {
+    /// True if the stored mtime would be ambiguous with the current time
+    pub fn need_delay(&self, now: i32) -> bool {
         self.state() == EntryState::Normal && self.mtime() == now
     }
 
     pub fn clear_ambiguous_mtime(&mut self, now: i32) -> bool {
-        let ambiguous = self.mtime_is_ambiguous(now);
+        let ambiguous = self.need_delay(now);
         if ambiguous {
             // The file was last modified "simultaneously" with the current
             // write to dirstate (i.e. within the same second for file-