diff mercurial/pure/parsers.py @ 48160:898de425bcd6

dirstate-item: replace call to new_possibly_dirty The constructor is on its way out, so we inline the last relevant call before dropping it. Differential Revision: https://phab.mercurial-scm.org/D11604
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Fri, 01 Oct 2021 09:24:48 +0200
parents 252d2f3f0d17
children 20e41b367953
line wrap: on
line diff
--- a/mercurial/pure/parsers.py	Fri Oct 01 09:23:28 2021 +0200
+++ b/mercurial/pure/parsers.py	Fri Oct 01 09:24:48 2021 +0200
@@ -156,7 +156,7 @@
             if size == FROM_P2:
                 return cls(wc_tracked=True, p2_info=True)
             elif size == NONNORMAL:
-                return cls.new_possibly_dirty()
+                return cls(wc_tracked=True, p1_tracked=True)
             elif mtime == AMBIGUOUS_TIME:
                 instance = cls.new_normal(mode, size, 42)
                 instance._mtime = None