Skip to content
Snippets Groups Projects
Commit 3674797a authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

flagprocessors: move _flagserrorclass attribute on revlog & co

This is a small duplication, and the last bit we need to get rid of the mixin.

Honestly, I am not fan of that class attribute and it mostly exist to accomodate
The simple-storage whose usage of flag processors is dumbious and that is
currently dead code anyway. However I don't want to be pulled into futher
unrelated cleaning so it is a small price to pay.

Differential Revision: https://phab.mercurial-scm.org/D6822
parent 01304095
No related branches found
No related tags found
No related merge requests found
...@@ -50,6 +50,7 @@ ...@@ -50,6 +50,7 @@
class remotefilelog(flagutil.flagprocessorsmixin): class remotefilelog(flagutil.flagprocessorsmixin):
_generaldelta = True _generaldelta = True
_flagserrorclass = error.RevlogError
def __init__(self, opener, path, repo): def __init__(self, opener, path, repo):
self.opener = opener self.opener = opener
......
...@@ -298,6 +298,9 @@ ...@@ -298,6 +298,9 @@
If `upperboundcomp` is not None, this is the expected maximal gain from If `upperboundcomp` is not None, this is the expected maximal gain from
compression for the data content. compression for the data content.
""" """
_flagserrorclass = error.RevlogError
def __init__(self, opener, indexfile, datafile=None, checkambig=False, def __init__(self, opener, indexfile, datafile=None, checkambig=False,
mmaplargeindex=False, censorable=False, mmaplargeindex=False, censorable=False,
upperboundcomp=None): upperboundcomp=None):
......
...@@ -87,8 +87,6 @@ ...@@ -87,8 +87,6 @@
See the documentation of the ``_processflags`` method for details. See the documentation of the ``_processflags`` method for details.
""" """
_flagserrorclass = error.RevlogError
def processflagswrite(revlog, text, flags, sidedata): def processflagswrite(revlog, text, flags, sidedata):
"""Inspect revision data flags and applies write transformations defined """Inspect revision data flags and applies write transformations defined
by registered flag processors. by registered flag processors.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment