comparison mercurial/localrepo.py @ 29722:b9ee2a1c4e9c

localrepo: jettison now-unused dirlog() method from localrepo
author Augie Fackler <augie@google.com>
date Fri, 05 Aug 2016 12:47:03 -0400
parents 41689e293994
children 426d931e5db2
comparison
equal deleted inserted replaced
29721:d1c3721d184c 29722:b9ee2a1c4e9c
502 502
503 @storecache('00manifest.i') 503 @storecache('00manifest.i')
504 def manifest(self): 504 def manifest(self):
505 return manifest.manifest(self.svfs) 505 return manifest.manifest(self.svfs)
506 506
507 def dirlog(self, dir):
508 return self.manifest.dirlog(dir)
509
510 @repofilecache('dirstate') 507 @repofilecache('dirstate')
511 def dirstate(self): 508 def dirstate(self):
512 return dirstate.dirstate(self.vfs, self.ui, self.root, 509 return dirstate.dirstate(self.vfs, self.ui, self.root,
513 self._dirstatevalidate) 510 self._dirstatevalidate)
514 511