bundlerepo: drop the custom `rawdata` implementation
authorPierre-Yves David <pierre-yves.david@octobus.net>
Fri, 30 Aug 2019 18:12:16 +0200
changeset 42823 5ba8c328a895
parent 42822 0f5652f17325
child 42824 64c3db458d08
bundlerepo: drop the custom `rawdata` implementation We can rely on the main one now.
mercurial/bundlerepo.py
--- a/mercurial/bundlerepo.py	Fri Aug 30 17:46:47 2019 +0200
+++ b/mercurial/bundlerepo.py	Fri Aug 30 18:12:16 2019 +0200
@@ -139,9 +139,6 @@
             rawtext = mdiff.patches(rawtext, [delta])
         return rev, rawtext, validated
 
-    def rawdata(self, nodeorrev, _df=None):
-        return self.revision(nodeorrev, _df=_df, raw=True)
-
     def addrevision(self, *args, **kwargs):
         raise NotImplementedError