rust/hg-cpython/src/revlog.rs
changeset 51968 8060257fd918
parent 51966 fb4d49c52c06
child 51970 e5dcaf6d4ac0
--- a/rust/hg-cpython/src/revlog.rs	Wed Sep 25 17:11:32 2024 +0200
+++ b/rust/hg-cpython/src/revlog.rs	Thu Sep 26 00:50:21 2024 +0200
@@ -333,12 +333,6 @@
         Ok(rust_res)
     }
 
-    /// get filtered head revisions
-    def headrevsfiltered(&self, *args, **_kw) -> PyResult<PyObject> {
-        let rust_res = self.inner_headrevsfiltered(py, &args.get_item(py, 0))?;
-        Ok(rust_res)
-    }
-
     /// True if the object is a snapshot
     def issnapshot(&self, *args, **_kw) -> PyResult<bool> {
         let index = self.index(py).borrow();