##// END OF EJS Templates
revlog: stop using `_processflags` directly...
marmoute -
r43148:4a3efe0f default
parent child Browse files
Show More
@@ -1649,7 +1649,11 b' class revlog(flagutil.flagprocessorsmixi'
1649 # no extra flags set, no flag processor runs, text = rawtext
1649 # no extra flags set, no flag processor runs, text = rawtext
1650 return rawtext
1650 return rawtext
1651
1651
1652 text, validatehash = self._processflags(rawtext, flags, 'read', raw=raw)
1652 if raw:
1653 validatehash = self._processflagsraw(rawtext, flags)
1654 text = rawtext
1655 else:
1656 text, validatehash = self._processflagsread(rawtext, flags)
1653 if validatehash:
1657 if validatehash:
1654 self.checkhash(text, node, rev=rev)
1658 self.checkhash(text, node, rev=rev)
1655 if not validated:
1659 if not validated:
General Comments 0
You need to be logged in to leave comments. Login now