##// END OF EJS Templates
dirstate: cleanup the `_map` property cache...
marmoute -
r51024:3c6546b1 default
parent child Browse files
Show More
@@ -316,14 +316,13 b' class dirstate:'
316 @propertycache
316 @propertycache
317 def _map(self):
317 def _map(self):
318 """Return the dirstate contents (see documentation for dirstatemap)."""
318 """Return the dirstate contents (see documentation for dirstatemap)."""
319 self._map = self._mapcls(
319 return self._mapcls(
320 self._ui,
320 self._ui,
321 self._opener,
321 self._opener,
322 self._root,
322 self._root,
323 self._nodeconstants,
323 self._nodeconstants,
324 self._use_dirstate_v2,
324 self._use_dirstate_v2,
325 )
325 )
326 return self._map
327
326
328 @property
327 @property
329 def _sparsematcher(self):
328 def _sparsematcher(self):
General Comments 0
You need to be logged in to leave comments. Login now