mercurial/context.py
changeset 35286 307b1689e3f8
parent 35285 3ceebf497057
child 35289 2f8c476c49fe
--- a/mercurial/context.py	Fri Dec 01 00:07:23 2017 -0800
+++ b/mercurial/context.py	Fri Dec 01 00:07:23 2017 -0800
@@ -1993,8 +1993,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):
@@ -2074,7 +2074,7 @@
     def isdirty(self, path):
         return path in self._cache
 
-    def _clean(self):
+    def clean(self):
         self._cache = {}
 
     def _markdirty(self, path, exists, data=None, date=None, flags=''):