mergestate: remove unused unsupported related mergestate records
authorPulkit Goyal <7895pulkit@gmail.com>
Thu, 09 Jul 2020 16:39:42 +0530
changeset 45162 8530022f968e
parent 45161 9abdc0bd2ab9
child 45163 f69253935bf8
mergestate: remove unused unsupported related mergestate records I tried to find users of this but was unable to find. Seems like RECORD_OVERRIDE is doing for what they were used before. Differential Revision: https://phab.mercurial-scm.org/D8718
mercurial/mergestate.py
--- a/mercurial/mergestate.py	Thu Jul 09 16:38:24 2020 +0530
+++ b/mercurial/mergestate.py	Thu Jul 09 16:39:42 2020 +0530
@@ -53,8 +53,6 @@
 
 RECORD_MERGE_DRIVER_STATE = b'm'
 RECORD_OVERRIDE = b't'
-RECORD_UNSUPPORTED_MANDATORY = b'X'
-RECORD_UNSUPPORTED_ADVISORY = b'x'
 
 MERGE_DRIVER_STATE_UNMARKED = b'u'
 MERGE_DRIVER_STATE_MARKED = b'm'
@@ -115,8 +113,6 @@
     m: the external merge driver defined for this merge plus its run state
        (experimental)
     f: a (filename, dictionary) tuple of optional values for a given file
-    X: unsupported mandatory record type (used in tests)
-    x: unsupported advisory record type (used in tests)
     l: the labels for the parts of the merge.
 
     Merge driver run states (experimental):