Mercurial > public > mercurial-scm > hg
comparison mercurial/localrepo.py @ 30377:2019fbdab075
manifest: delete manifest.manifest class
Now that nothing uses the primary manifest class, we can delete it.
author | Durham Goode <durham@fb.com> |
---|---|
date | Thu, 10 Nov 2016 02:13:19 -0800 |
parents | f84fc6a92817 |
children | 77cd647b04ac |
comparison
equal
deleted
inserted
replaced
30376:f84fc6a92817 | 30377:2019fbdab075 |
---|---|
506 | 506 |
507 def _constructmanifest(self): | 507 def _constructmanifest(self): |
508 # This is a temporary function while we migrate from manifest to | 508 # This is a temporary function while we migrate from manifest to |
509 # manifestlog. It allows bundlerepo and unionrepo to intercept the | 509 # manifestlog. It allows bundlerepo and unionrepo to intercept the |
510 # manifest creation. | 510 # manifest creation. |
511 return manifest.manifest(self.svfs) | 511 return manifest.manifestrevlog(self.svfs) |
512 | 512 |
513 @storecache('00manifest.i') | 513 @storecache('00manifest.i') |
514 def manifestlog(self): | 514 def manifestlog(self): |
515 return manifest.manifestlog(self.svfs, self) | 515 return manifest.manifestlog(self.svfs, self) |
516 | 516 |