rust/hg-cpython/src/dirstate/item.rs
changeset 48392 434de12918fd
parent 48378 3d6eb119200d
child 48398 111098af6356
--- a/rust/hg-cpython/src/dirstate/item.rs	Mon Oct 25 11:36:22 2021 +0200
+++ b/rust/hg-cpython/src/dirstate/item.rs	Fri Nov 19 03:04:42 2021 +0100
@@ -194,11 +194,6 @@
         Ok(mtime)
     }
 
-    def need_delay(&self, now: (u32, u32)) -> PyResult<bool> {
-        let now = timestamp(py, now)?;
-        Ok(self.entry(py).get().need_delay(now))
-    }
-
     def mtime_likely_equal_to(&self, other: (u32, u32)) -> PyResult<bool> {
         if let Some(mtime) = self.entry(py).get().truncated_mtime() {
             Ok(mtime.likely_equal(timestamp(py, other)?))