D11440: dirstate: use `reset_state` in `rebuild` instead of `dropfile`
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Thu Sep 16 14:46:01 UTC 2021
marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
As `dirstatemap.dropfile` is on its way out.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11440
AFFECTED FILES
mercurial/dirstate.py
CHANGE DETAILS
diff --git a/mercurial/dirstate.py b/mercurial/dirstate.py
--- a/mercurial/dirstate.py
+++ b/mercurial/dirstate.py
@@ -814,8 +814,8 @@
)
self._updatedfiles.add(f)
for f in to_drop:
- if self._map.dropfile(f):
- self._updatedfiles.add(f)
+ self._map.reset_state(f)
+ self._updatedfiles.add(f)
self._dirty = True
To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list