rust/hg-cpython/src/dirstate/item.rs
changeset 48061 060cd909439f
parent 48051 98c0408324e6
child 48065 870100c0209b
--- a/rust/hg-cpython/src/dirstate/item.rs	Wed Sep 22 17:46:29 2021 +0200
+++ b/rust/hg-cpython/src/dirstate/item.rs	Tue Sep 28 20:05:37 2021 +0200
@@ -95,16 +95,6 @@
         Ok(self.entry(py).get().from_p2_removed())
     }
 
-    @property
-    def dm_nonnormal(&self) -> PyResult<bool> {
-        Ok(self.entry(py).get().is_non_normal())
-    }
-
-    @property
-    def dm_otherparent(&self) -> PyResult<bool> {
-        Ok(self.entry(py).get().is_from_other_parent())
-    }
-
     def v1_state(&self) -> PyResult<PyBytes> {
         let (state, _mode, _size, _mtime) = self.entry(py).get().v1_data();
         let state_byte: u8 = state.into();