rust/hg-core/src/dirstate/entry.rs
changeset 48061 060cd909439f
parent 48051 98c0408324e6
child 48064 2943955304b3
--- a/rust/hg-core/src/dirstate/entry.rs	Wed Sep 22 17:46:29 2021 +0200
+++ b/rust/hg-core/src/dirstate/entry.rs	Tue Sep 28 20:05:37 2021 +0200
@@ -294,11 +294,7 @@
         (self.state().into(), self.mode(), self.size(), self.mtime())
     }
 
-    pub fn is_non_normal(&self) -> bool {
-        self.state() != EntryState::Normal || self.mtime() == MTIME_UNSET
-    }
-
-    pub fn is_from_other_parent(&self) -> bool {
+    pub(crate) fn is_from_other_parent(&self) -> bool {
         self.state() == EntryState::Normal
             && self.size() == SIZE_FROM_OTHER_PARENT
     }