rust/hg-core/src/dirstate/entry.rs
changeset 48173 20e41b367953
parent 48172 898de425bcd6
child 48175 d0081dbca442
--- a/rust/hg-core/src/dirstate/entry.rs	Fri Oct 01 09:24:48 2021 +0200
+++ b/rust/hg-core/src/dirstate/entry.rs	Fri Oct 01 09:25:13 2021 +0200
@@ -117,14 +117,6 @@
         }
     }
 
-    pub fn new_possibly_dirty() -> Self {
-        Self {
-            flags: Flags::WDIR_TRACKED | Flags::P1_TRACKED,
-            mode_size: None,
-            mtime: None,
-        }
-    }
-
     pub fn new_normal(mode: i32, size: i32, mtime: i32) -> Self {
         Self {
             flags: Flags::WDIR_TRACKED | Flags::P1_TRACKED,