rust/hg-cpython/src/dirstate/item.rs
changeset 48159 252d2f3f0d17
parent 48157 b45c4dc65adc
child 48161 20e41b367953
--- a/rust/hg-cpython/src/dirstate/item.rs	Fri Oct 01 09:21:52 2021 +0200
+++ b/rust/hg-cpython/src/dirstate/item.rs	Fri Oct 01 09:23:28 2021 +0200
@@ -139,12 +139,6 @@
     }
 
     @classmethod
-    def new_from_p2(_cls) -> PyResult<Self> {
-        let entry = DirstateEntry::new_from_p2();
-        DirstateItem::create_instance(py, Cell::new(entry))
-    }
-
-    @classmethod
     def new_possibly_dirty(_cls) -> PyResult<Self> {
         let entry = DirstateEntry::new_possibly_dirty();
         DirstateItem::create_instance(py, Cell::new(entry))