comparison mercurial/localrepo.py @ 30376:f84fc6a92817

localrepo: delete localrepo.manifest Now that nothing uses normal manifests, we can delete localrepo.manifest.
author Durham Goode <durham@fb.com>
date Thu, 10 Nov 2016 02:13:19 -0800
parents fa54f7ade491
children 2019fbdab075
comparison
equal deleted inserted replaced
30375:11b8b740d54a 30376:f84fc6a92817
502 p = os.environ['HG_PENDING'] 502 p = os.environ['HG_PENDING']
503 if p.startswith(self.root): 503 if p.startswith(self.root):
504 c.readpending('00changelog.i.a') 504 c.readpending('00changelog.i.a')
505 return c 505 return c
506 506
507 @property
508 def manifest(self):
509 return self.manifestlog._oldmanifest
510
511 def _constructmanifest(self): 507 def _constructmanifest(self):
512 # This is a temporary function while we migrate from manifest to 508 # This is a temporary function while we migrate from manifest to
513 # manifestlog. It allows bundlerepo and unionrepo to intercept the 509 # manifestlog. It allows bundlerepo and unionrepo to intercept the
514 # manifest creation. 510 # manifest creation.
515 return manifest.manifest(self.svfs) 511 return manifest.manifest(self.svfs)