revlog: return the nodemap as the nodecache
authorPierre-Yves David <pierre-yves.david@octobus.net>
Sat, 02 Nov 2019 15:21:28 +0100
changeset 43528 90a0f631829e
parent 43527 43424f03d9a4
child 43529 bf176127033a
revlog: return the nodemap as the nodecache Ultimately, the nodecache is the nodemap. To stop having this disctinction, we start using the nodemap where the nodecache was used. This work is part of a refactoring to unify the revlog index and the nodemap. This unification prepare the use of a persistent nodemap. Differential Revision: https://phab.mercurial-scm.org/D7316
mercurial/revlog.py
--- a/mercurial/revlog.py	Sat Nov 02 14:45:57 2019 +0100
+++ b/mercurial/revlog.py	Sat Nov 02 15:21:28 2019 +0100
@@ -630,7 +630,7 @@
             # populate mapping down to the initial node
             node0 = self.index[0][7]  # get around changelog filtering
             self.rev(node0)
-        return self._nodecache
+        return self.index.nodemap
 
     def hasnode(self, node):
         try: