Mercurial > public > mercurial-scm > hg-stable
diff mercurial/revlog.py @ 42993:eb5048f8c533
flagprocessors: make `processflagsread` a module level function
One more steps toward removing the mixin.
Differential Revision: https://phab.mercurial-scm.org/D6819
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Sat, 07 Sep 2019 00:11:58 +0200 |
parents | a04b2c010d03 |
children | dff95420480f |
line wrap: on
line diff
--- a/mercurial/revlog.py Fri Sep 06 23:50:32 2019 +0200 +++ b/mercurial/revlog.py Sat Sep 07 00:11:58 2019 +0200 @@ -1663,7 +1663,7 @@ validatehash = self._processflagsraw(rawtext, flags) text = rawtext else: - r = self._processflagsread(rawtext, flags) + r = flagutil.processflagsread(self, rawtext, flags) text, validatehash, sidedata = r if validatehash: self.checkhash(text, node, rev=rev)