# HG changeset patch # User Mark Thomas # Date 2017-11-15 09:07:42 # Node ID e8ae0b2d88a8f4d6c4c8df79c93513999219b227 # Parent e6c64744781f02315b66b9dd3b71f1744f7dbba4 dirstate: remove _droppath method This method now doesn't do very much interesting and can be removed. The updated files set can be updated where _droppath was originally called. Differential Revision: https://phab.mercurial-scm.org/D1344 diff --git a/mercurial/dirstate.py b/mercurial/dirstate.py --- a/mercurial/dirstate.py +++ b/mercurial/dirstate.py @@ -386,9 +386,6 @@ class dirstate(object): def copies(self): return self._map.copymap - def _droppath(self, f): - self._updatedfiles.add(f) - def _addpath(self, f, state, mode, size, mtime): oldstate = self[f] if state == 'a' or oldstate == 'r': @@ -465,7 +462,6 @@ class dirstate(object): def remove(self, f): '''Mark a file removed.''' self._dirty = True - self._droppath(f) oldstate = self[f] size = 0 if self._pl[1] != nullid: @@ -477,6 +473,7 @@ class dirstate(object): elif entry[0] == 'n' and entry[2] == -2: # other parent size = -2 self._map.otherparentset.add(f) + self._updatedfiles.add(f) self._map.removefile(f, oldstate, size) if size == 0: self._map.copymap.pop(f, None) @@ -492,7 +489,7 @@ class dirstate(object): oldstate = self[f] if self._map.dropfile(f, oldstate): self._dirty = True - self._droppath(f) + self._updatedfiles.add(f) self._map.copymap.pop(f, None) def _discoverpath(self, path, normed, ignoremissing, exists, storemap):