spanset: use base implementation for filter
authorPierre-Yves David <pierre-yves.david@fb.com>
Fri, 03 Oct 2014 00:39:57 -0500
changeset 22735 38f0ab661b0f
parent 22734 8e4ff34b69b2
child 22736 3439b66f506e
spanset: use base implementation for filter
mercurial/revset.py
--- a/mercurial/revset.py	Fri Oct 03 01:27:00 2014 -0500
+++ b/mercurial/revset.py	Fri Oct 03 00:39:57 2014 -0500
@@ -2962,9 +2962,6 @@
     def isdescending(self):
         return self._start >= self._end
 
-    def filter(self, l):
-        return orderedlazyset(self, l, ascending=self.isascending())
-
 class fullreposet(_spanset):
     """a set containing all revisions in the repo