D1230: overlayworkingctx: make clean() public

phillco (Phil Cohen) phabricator at mercurial-scm.org
Thu Nov 16 06:01:22 UTC 2017


phillco updated this revision to Diff 3557.

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D1230?vs=3103&id=3557

REVISION DETAIL
  https://phab.mercurial-scm.org/D1230

AFFECTED FILES
  mercurial/context.py

CHANGE DETAILS

diff --git a/mercurial/context.py b/mercurial/context.py
--- a/mercurial/context.py
+++ b/mercurial/context.py
@@ -1976,8 +1976,8 @@
     def __init__(self, repo, wrappedctx):
         super(overlayworkingctx, self).__init__(repo)
         self._repo = repo
+        self.clean()
         self._wrappedctx = wrappedctx
-        self._clean()
 
     def data(self, path):
         if self.isdirty(path):
@@ -2057,7 +2057,7 @@
     def isdirty(self, path):
         return path in self._cache
 
-    def _clean(self):
+    def clean(self):
         self._cache = {}
         self._writeorder = []
 



To: phillco, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list