##// END OF EJS Templates
localrepo: update comments around path auditors
Augie Fackler -
r35119:ff80efc8 default
parent child Browse files
Show More
@@ -364,10 +364,12 b' class localrepository(object):'
364 self.root = self.wvfs.base
364 self.root = self.wvfs.base
365 self.path = self.wvfs.join(".hg")
365 self.path = self.wvfs.join(".hg")
366 self.origroot = path
366 self.origroot = path
367 # These auditor are not used by the vfs,
367 # This is only used by context.workingctx.match in order to
368 # only used when writing this comment: basectx.match
368 # detect files in subrepos.
369 self.auditor = pathutil.pathauditor(
369 self.auditor = pathutil.pathauditor(
370 self.root, callback=self._checknested)
370 self.root, callback=self._checknested)
371 # This is only used by context.basectx.match in order to detect
372 # files in subrepos.
371 self.nofsauditor = pathutil.pathauditor(
373 self.nofsauditor = pathutil.pathauditor(
372 self.root, callback=self._checknested, realfs=False, cached=True)
374 self.root, callback=self._checknested, realfs=False, cached=True)
373 self.baseui = baseui
375 self.baseui = baseui
General Comments 0
You need to be logged in to leave comments. Login now