author | Pierre-Yves David <pierre-yves.david@fb.com> |
Fri, 03 Oct 2014 00:31:33 -0500 | |
changeset 22738 | 70a0664008ea |
parent 22737 | e03ece039b3a |
child 22739 | 4ed47a1b2d24 |
--- a/mercurial/revset.py Fri Oct 03 00:31:18 2014 -0500 +++ b/mercurial/revset.py Fri Oct 03 00:31:33 2014 -0500 @@ -2919,14 +2919,6 @@ return True return False - def __add__(self, x): - kwargs = {} - if self.isascending() and x.isascending(): - kwargs['ascending'] = True - if self.isdescending() and x.isdescending(): - kwargs['ascending'] = False - return _addset(self, x, **kwargs) - def __len__(self): if not self._hiddenrevs: return abs(self._end - self._start)