Mercurial > hg-stable
changeset 42833:5ba8c328a895
bundlerepo: drop the custom `rawdata` implementation
We can rely on the main one now.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Fri, 30 Aug 2019 18:12:16 +0200 |
parents | 0f5652f17325 |
children | 64c3db458d08 |
files | mercurial/bundlerepo.py |
diffstat | 1 files changed, 0 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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