hidden: drop outdated comment about "dynamic" performance
authorPierre-Yves David <pierre-yves.david@octobus.net>
Sun, 21 May 2017 15:56:02 +0200
changeset 32513 43ae9e6eaaba
parent 32512 4c5bc7cbd989
child 32514 a87dabb053d0
hidden: drop outdated comment about "dynamic" performance This comment is now irrelevant since we have a faster algorithm and no cache.
mercurial/repoview.py
--- a/mercurial/repoview.py	Sun May 21 15:47:06 2017 +0200
+++ b/mercurial/repoview.py	Sun May 21 15:56:02 2017 +0200
@@ -29,11 +29,8 @@
     return obsolete.getrevs(repo, 'obsolete')
 
 def revealedrevs(repo):
-    """Non-cacheable revisions blocking hidden changesets from being filtered.
-
-    Get revisions that will block hidden changesets and are likely to change,
-    but unlikely to create hidden blockers. They won't be cached, so be careful
-    with adding additional computation."""
+    """non-cacheable revisions blocking hidden changesets from being filtered
+    """
 
     cl = repo.changelog
     blockers = set()