##// END OF EJS Templates
fsmonitor: only access inner dirstate map if it is available...
Mark Thomas -
r35084:ae7ad53d default
parent child Browse files
Show More
@@ -273,7 +273,11 b' def overridewalk(orig, self, match, subr'
273
273
274 matchfn = match.matchfn
274 matchfn = match.matchfn
275 matchalways = match.always()
275 matchalways = match.always()
276 dmap = self._map._map
276 dmap = self._map
277 if util.safehasattr(dmap, '_map'):
278 # for better performance, directly access the inner dirstate map if the
279 # standard dirstate implementation is in use.
280 dmap = dmap._map
277 nonnormalset = self._map.nonnormalset
281 nonnormalset = self._map.nonnormalset
278
282
279 copymap = self._map.copymap
283 copymap = self._map.copymap
General Comments 0
You need to be logged in to leave comments. Login now