Mercurial > public > mercurial-scm > hg-stable
diff mercurial/revlog.py @ 42994:dff95420480f
flagprocessors: make `processflagsraw` a module level function
One more steps toward removing the mixin.
Differential Revision: https://phab.mercurial-scm.org/D6820
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Sat, 07 Sep 2019 00:16:32 +0200 |
parents | eb5048f8c533 |
children | 01304095256c |
line wrap: on
line diff
--- a/mercurial/revlog.py Sat Sep 07 00:11:58 2019 +0200 +++ b/mercurial/revlog.py Sat Sep 07 00:16:32 2019 +0200 @@ -1660,7 +1660,7 @@ sidedata = {} if raw: - validatehash = self._processflagsraw(rawtext, flags) + validatehash = flagutil.processflagsraw(self, rawtext, flags) text = rawtext else: r = flagutil.processflagsread(self, rawtext, flags)