histedit: discard meaningless comment about 'hexlify node'
Refactoring in
26b41a902195 made this comment meaningless. The node
gotten by "discovery.findcommonoutgoing()" is hexlified in "between()"
by "repo.set('%n::%n', old, new)".
--- a/hgext/histedit.py Mon Aug 26 16:11:21 2013 +0900
+++ b/hgext/histedit.py Mon Aug 26 16:11:21 2013 +0900
@@ -419,10 +419,6 @@
if revs:
revs = [repo.lookup(rev) for rev in revs]
- # hexlify nodes from outgoing, because we're going to parse
- # parent[0] using revsingle below, and if the binary hash
- # contains special revset characters like ":" the revset
- # parser can choke.
outgoing = discovery.findcommonoutgoing(repo, other, revs, force=force)
if not outgoing.missing:
raise util.Abort(_('no outgoing ancestors'))