[Request] [+ ] D11313: dirstate: directly call the dirstatemap in `set_untracked`
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Sat Aug 21 09:55:58 UTC 2021
marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
This function is only called in two places: the deprecated "remove" method and
in the new `set_untracked` method.
So we simply inline the appropriate content in `set_untraked`, paving the way
to dropping the deprecated code and its associated function.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11313
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
@@ -500,7 +500,9 @@
self._drop(filename)
return True
else:
- self._remove(filename)
+ self._dirty = True
+ self._updatedfiles.add(filename)
+ self._map.removefile(filename, in_merge=self.in_merge)
return True
@requires_no_parents_change
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/20210821/f491b391/attachment.html>
More information about the Mercurial-patches
mailing list