Mercurial > public > mercurial-scm > hg
diff rust/hg-core/src/dirstate/entry.rs @ 48258:c591944f42c1
dirstate: align Rust function name to `need_delay`
The rest of the code use this name. It is not a great name, but it is better to
stay consistent.
Differential Revision: https://phab.mercurial-scm.org/D11699
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Tue, 19 Oct 2021 22:14:48 +0200 |
parents | f45d35950db6 |
children | 84f6b0c41b90 |
line wrap: on
line diff
--- 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-