dagop: use smartset.min() in revdescendants() generator

All callers pass the result of revset.getset(), which should be a smartset.
This commit is contained in:
Yuya Nishihara 2017-06-23 21:15:10 +09:00
parent c6472824e6
commit 1103437683

View File

@ -91,9 +91,7 @@ def _genrevdescendants(repo, revs, followfirst):
cut = None
cl = repo.changelog
# XXX this should be 'parentset.min()' assuming 'parentset' is a
# smartset (and if it is not, it should.)
first = min(revs)
first = revs.min()
nullrev = node.nullrev
if first == nullrev:
# Are there nodes with a null first parent and a non-null