mercurial/peer.py
changeset 33767 b47fe9733d76
parent 33766 4c706037adef
child 33806 dedab036215d
--- a/mercurial/peer.py	Wed Aug 09 23:29:30 2017 -0700
+++ b/mercurial/peer.py	Wed Aug 09 23:35:20 2017 -0700
@@ -49,15 +49,6 @@
     def results(self):
         raise NotImplementedError()
 
-class localbatch(batcher):
-    '''performs the queued calls directly'''
-    def __init__(self, local):
-        batcher.__init__(self)
-        self.local = local
-    def submit(self):
-        for name, args, opts, resref in self.calls:
-            resref.set(getattr(self.local, name)(*args, **opts))
-
 class localiterbatcher(iterbatcher):
     def __init__(self, local):
         super(iterbatcher, self).__init__()
@@ -106,10 +97,6 @@
     return plain
 
 class peerrepository(object):
-
-    def batch(self):
-        return localbatch(self)
-
     def iterbatch(self):
         """Batch requests but allow iterating over the results.