localrepo: remove unused addchangegroup() (API)

This completes the cleanup started in f1b3c9ce0ce7 (localrepo: move
the addchangegroup method in changegroup module, 2014-04-01).
This commit is contained in:
Martin von Zweigbergk 2017-06-15 15:13:18 -07:00
parent 02b210363d
commit d75cb87451

View File

@ -212,9 +212,6 @@ class localpeer(peer.peerrepository):
def lock(self):
return self._repo.lock()
def addchangegroup(self, cg, source, url):
return cg.apply(self._repo, source, url)
def pushkey(self, namespace, key, old, new):
return self._repo.pushkey(namespace, key, old, new)