rust/hg-cpython/src/dirstate/item.rs
changeset 48164 1ab4523afe12
parent 48161 20e41b367953
child 48194 1000db4a71f1
--- a/rust/hg-cpython/src/dirstate/item.rs	Fri Oct 01 09:29:32 2021 +0200
+++ b/rust/hg-cpython/src/dirstate/item.rs	Fri Oct 01 09:29:50 2021 +0200
@@ -138,12 +138,6 @@
         DirstateItem::create_instance(py, Cell::new(entry))
     }
 
-    @classmethod
-    def new_normal(_cls, mode: i32, size: i32, mtime: i32) -> PyResult<Self> {
-        let entry = DirstateEntry::new_normal(mode, size, mtime);
-        DirstateItem::create_instance(py, Cell::new(entry))
-    }
-
     def drop_merge_data(&self) -> PyResult<PyNone> {
         self.update(py, |entry| entry.drop_merge_data());
         Ok(PyNone)