##// END OF EJS Templates
basefilectx: move manifest from filectx
Sean Farley -
r19600:12cdff44 default
parent child Browse files
Show More
@@ -509,6 +509,8 b' class basefilectx(object):'
509 509 return self._changectx.phase()
510 510 def phasestr(self):
511 511 return self._changectx.phasestr()
512 def manifest(self):
513 return self._changectx.manifest()
512 514
513 515 class filectx(basefilectx):
514 516 """A filecontext object makes access to data related to a particular
@@ -565,8 +567,6 b' class filectx(basefilectx):'
565 567 return filectx(self._repo, self._path, fileid=fileid,
566 568 filelog=self._filelog)
567 569
568 def manifest(self):
569 return self._changectx.manifest()
570 570 def changectx(self):
571 571 return self._changectx
572 572
General Comments 0
You need to be logged in to leave comments. Login now