lazyset: drop now useless ascending/descending definition
authorPierre-Yves David <pierre-yves.david@fb.com>
Thu, 02 Oct 2014 18:52:09 -0500
changeset 22721 adc43967d401
parent 22720 4388f99c5512
child 22722 e8832cf1abf6
lazyset: drop now useless ascending/descending definition
mercurial/revset.py
--- a/mercurial/revset.py	Tue Sep 30 23:36:57 2014 -0500
+++ b/mercurial/revset.py	Thu Oct 02 18:52:09 2014 -0500
@@ -2416,12 +2416,6 @@
         self._condition = condition
         self._cache = {}
 
-    def ascending(self):
-        self._subset.sort()
-
-    def descending(self):
-        self._subset.sort(reverse=True)
-
     def min(self):
         return min(self)