unionrepo: drop the custom `rawdata` implementation
authorPierre-Yves David <pierre-yves.david@octobus.net>
Fri, 30 Aug 2019 18:11:41 +0200
changeset 42829 853f70137437
parent 42828 f8b5da997a39
child 42830 cf2b765cecd7
unionrepo: drop the custom `rawdata` implementation We can rely on the main one now.
mercurial/unionrepo.py
--- a/mercurial/unionrepo.py	Fri Aug 30 18:10:43 2019 +0200
+++ b/mercurial/unionrepo.py	Fri Aug 30 18:11:41 2019 +0200
@@ -109,9 +109,6 @@
             func = super(unionrevlog, self)._revisiondata
         return func(node, _df=_df, raw=raw)
 
-    def rawdata(self, nodeorrev, _df=None):
-        return self.revision(nodeorrev, _df=_df, raw=True)
-
     def addrevision(self, text, transaction, link, p1=None, p2=None, d=None):
         raise NotImplementedError
     def addgroup(self, deltas, linkmapper, transaction, addrevisioncb=None,