changeset 26287:5c217bcc4597

obsolete: remove unused _knownrevs function The call site was removed at cd62532c62a1.
author Yuya Nishihara <yuya@tcha.org>
date Sun, 13 Sep 2015 22:34:58 +0900
parents 4b685712fa45
children 2239626369f5
files mercurial/obsolete.py
diffstat 1 files changed, 0 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/obsolete.py	Thu Sep 17 16:08:10 2015 -0700
+++ b/mercurial/obsolete.py	Sun Sep 13 22:34:58 2015 +0900
@@ -1045,16 +1045,6 @@
                 cache[current] = final
     return cache[initialnode]
 
-def _knownrevs(repo, nodes):
-    """yield revision numbers of known nodes passed in parameters
-
-    Unknown revisions are silently ignored."""
-    torev = repo.changelog.nodemap.get
-    for n in nodes:
-        rev = torev(n)
-        if rev is not None:
-            yield rev
-
 # mapping of 'set-name' -> <function to compute this set>
 cachefuncs = {}
 def cachefor(name):