[Updated] D11458: dirstate: remove now-unused .directories() method
SimonSapin
phabricator at mercurial-scm.org
Wed Sep 22 08:54:53 UTC 2021
Closed by commit rHGa83e24c3af6b: dirstate: remove now-unused .directories() method (authored by SimonSapin).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D11458?vs=30332&id=30370
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D11458/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D11458
AFFECTED FILES
mercurial/dirstate.py
mercurial/dirstatemap.py
CHANGE DETAILS
diff --git a/mercurial/dirstatemap.py b/mercurial/dirstatemap.py
--- a/mercurial/dirstatemap.py
+++ b/mercurial/dirstatemap.py
@@ -700,9 +700,6 @@
def copymap(self):
return self._rustmap.copymap()
- def directories(self):
- return self._rustmap.directories()
-
def debug_iter(self):
return self._rustmap.debug_iter()
diff --git a/mercurial/dirstate.py b/mercurial/dirstate.py
--- a/mercurial/dirstate.py
+++ b/mercurial/dirstate.py
@@ -344,9 +344,6 @@
iteritems = items
- def directories(self):
- return self._map.directories()
-
def parents(self):
return [self._validate(p) for p in self._pl]
To: SimonSapin, #hg-reviewers, Alphare
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20210922/af285f22/attachment-0002.html>
More information about the Mercurial-patches
mailing list