##// END OF EJS Templates
simplestorerepo: stop using `_processflags` directly...
marmoute -
r43149:38c62272 default
parent child Browse files
Show More
@@ -290,7 +290,11 b' class filestorage(flagutil.flagprocessor'
290 path = b'/'.join([self._storepath, hex(node)])
290 path = b'/'.join([self._storepath, hex(node)])
291 rawtext = self._svfs.read(path)
291 rawtext = self._svfs.read(path)
292
292
293 text, validatehash = self._processflags(rawtext, flags, 'read', raw=raw)
293 if raw:
294 validatehash = self._processflagsraw(rawtext, flags)
295 text = rawtext
296 else:
297 text, validatehash = self._processflagsread(rawtext, flags)
294 if validatehash:
298 if validatehash:
295 self.checkhash(text, node, rev=rev)
299 self.checkhash(text, node, rev=rev)
296
300
General Comments 0
You need to be logged in to leave comments. Login now