# HG changeset patch # User Boris Feld # Date 1538560787 -7200 # Node ID ca9d0c93aceaa8d06a256af41bbb2b49ff2c49e2 # Parent 67b93cd847fb17c73708e1eaf17126d95d0decc4 cleanupnodes: update comment to drop mention of filtering Since changeset 1857f50a9643 drop the filtering, we should not longer mention it in code comment. diff -r 67b93cd847fb -r ca9d0c93acea mercurial/scmutil.py --- a/mercurial/scmutil.py Wed Sep 26 18:04:46 2018 -0700 +++ b/mercurial/scmutil.py Wed Oct 03 11:59:47 2018 +0200 @@ -979,7 +979,7 @@ # unnecessary. That's the "if s or not isobs(n)" check below. # Also sort the node in topology order, that might be useful for # some obsstore logic. - # NOTE: the filtering and sorting might belong to createmarkers. + # NOTE: the sorting might belong to createmarkers. torev = unfi.changelog.rev sortfunc = lambda ns: torev(ns[0][0]) rels = []