diff mercurial/revlogutils/flagutil.py @ 42995:73288e7abe9b

flagprocessors: remove flagprocessorsmixin It became an empty shell. Differential Revision: https://phab.mercurial-scm.org/D6823
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Sat, 07 Sep 2019 00:34:20 +0200
parents 3674797ae8b9
children 142deb539ccf
line wrap: on
line diff
--- a/mercurial/revlogutils/flagutil.py	Sat Sep 07 00:26:15 2019 +0200
+++ b/mercurial/revlogutils/flagutil.py	Sat Sep 07 00:34:20 2019 +0200
@@ -79,14 +79,6 @@
         raise error.Abort(msg)
     flagprocessors[flag] = processor
 
-class flagprocessorsmixin(object):
-    """basic mixin to support revlog flag processing
-
-    Make sure the `_flagprocessors` attribute is set at ``__init__`` time.
-
-    See the documentation of the ``_processflags`` method for details.
-    """
-
 def processflagswrite(revlog, text, flags, sidedata):
     """Inspect revision data flags and applies write transformations defined
     by registered flag processors.