mercurial/localrepo.py
changeset 20926 7c1ed40e3325
parent 20925 5174c48ed8d8
child 20927 24a443948627
--- a/mercurial/localrepo.py	Tue Apr 01 13:59:55 2014 -0700
+++ b/mercurial/localrepo.py	Tue Apr 01 14:13:34 2014 -0700
@@ -1683,14 +1683,6 @@
     def push(self, remote, force=False, revs=None, newbranch=False):
         return exchange.push(self, remote, force, revs, newbranch)
 
-    def changegroupinfo(self, nodes, source):
-        if self.ui.verbose or source == 'bundle':
-            self.ui.status(_("%d changesets found\n") % len(nodes))
-        if self.ui.debugflag:
-            self.ui.debug("list of changesets:\n")
-            for node in nodes:
-                self.ui.debug("%s\n" % hex(node))
-
     def changegroupsubset(self, roots, heads, source):
         """Compute a changegroup consisting of all the nodes that are
         descendants of any of the roots and ancestors of any of the heads.