[Request] [+ ] D11606: dirstate-item: replace a call to new_possibly_dirty
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Sun Oct 3 10:54:02 UTC 2021
marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
The constructor is on its way out, so we inline a relevant call before
dropping it.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11606
AFFECTED FILES
mercurial/pure/parsers.py
CHANGE DETAILS
diff --git a/mercurial/pure/parsers.py b/mercurial/pure/parsers.py
--- a/mercurial/pure/parsers.py
+++ b/mercurial/pure/parsers.py
@@ -150,9 +150,12 @@
elif size == NONNORMAL:
return cls(wc_tracked=True, p1_tracked=True)
elif mtime == AMBIGUOUS_TIME:
- instance = cls.new_normal(mode, size, 42)
- instance._mtime = None
- return instance
+ return cls(
+ wc_tracked=True,
+ p1_tracked=True,
+ has_meaningful_mtime=False,
+ parentfiledata=(mode, size, 42),
+ )
else:
return cls.new_normal(mode, size, mtime)
else:
To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20211003/a90a6638/attachment-0001.html>
More information about the Mercurial-patches
mailing list