Mercurial > public > mercurial-scm > hg-stable
diff mercurial/localrepo.py @ 32889:6fa245f80b6f
localrepo: remove unused addchangegroup() (API)
This completes the cleanup started in d3775db748a0 (localrepo: move
the addchangegroup method in changegroup module, 2014-04-01).
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Thu, 15 Jun 2017 15:13:18 -0700 |
parents | 2083d1643d69 |
children | 05c213cd8ab8 |
line wrap: on
line diff
--- a/mercurial/localrepo.py Thu Jun 15 13:47:54 2017 -0700 +++ b/mercurial/localrepo.py Thu Jun 15 15:13:18 2017 -0700 @@ -212,9 +212,6 @@ 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)