revset-_hexlist: remove usage of set()

All smartset classes have fast lookup, so this function will be removed soon.
This commit is contained in:
Pierre-Yves David 2014-10-08 02:52:10 -07:00
parent 76a0476bf7
commit a54d940320

View File

@ -1675,7 +1675,7 @@ def _hexlist(repo, subset, x):
return baseset()
cl = repo.changelog
ls = [cl.rev(node.bin(r)) for r in s.split('\0')]
s = subset.set()
s = subset
return baseset([r for r in ls if r in s])
symbols = {