clfilter: drop extra filtering in localpeer
The repository used by localpeer is already filtered. We no longer
need to call a special function.
--- a/mercurial/localrepo.py Sun Jan 06 04:41:11 2013 +0100
+++ b/mercurial/localrepo.py Sun Jan 06 04:28:52 2013 +0100
@@ -91,10 +91,10 @@
return self._repo.lookup(key)
def branchmap(self):
- return discovery.visiblebranchmap(self._repo)
+ return self._repo.branchmap()
def heads(self):
- return discovery.visibleheads(self._repo)
+ return self._repo.heads()
def known(self, nodes):
return self._repo.known(nodes)