Mercurial > public > mercurial-scm > hg
comparison mercurial/localrepo.py @ 18279:679767c38cb5
clfilter: drop extra filtering in localpeer
The repository used by localpeer is already filtered. We no longer
need to call a special function.
author | Pierre-Yves David <pierre-yves.david@ens-lyon.org> |
---|---|
date | Sun, 06 Jan 2013 04:28:52 +0100 |
parents | 753acee7d6dd |
children | 2502a15e033d |
comparison
equal
deleted
inserted
replaced
18278:753acee7d6dd | 18279:679767c38cb5 |
---|---|
89 | 89 |
90 def lookup(self, key): | 90 def lookup(self, key): |
91 return self._repo.lookup(key) | 91 return self._repo.lookup(key) |
92 | 92 |
93 def branchmap(self): | 93 def branchmap(self): |
94 return discovery.visiblebranchmap(self._repo) | 94 return self._repo.branchmap() |
95 | 95 |
96 def heads(self): | 96 def heads(self): |
97 return discovery.visibleheads(self._repo) | 97 return self._repo.heads() |
98 | 98 |
99 def known(self, nodes): | 99 def known(self, nodes): |
100 return self._repo.known(nodes) | 100 return self._repo.known(nodes) |
101 | 101 |
102 def getbundle(self, source, heads=None, common=None): | 102 def getbundle(self, source, heads=None, common=None): |