##// 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 return self._changectx.phase()
509 return self._changectx.phase()
510 def phasestr(self):
510 def phasestr(self):
511 return self._changectx.phasestr()
511 return self._changectx.phasestr()
512 def manifest(self):
513 return self._changectx.manifest()
512
514
513 class filectx(basefilectx):
515 class filectx(basefilectx):
514 """A filecontext object makes access to data related to a particular
516 """A filecontext object makes access to data related to a particular
@@ -565,8 +567,6 b' class filectx(basefilectx):'
565 return filectx(self._repo, self._path, fileid=fileid,
567 return filectx(self._repo, self._path, fileid=fileid,
566 filelog=self._filelog)
568 filelog=self._filelog)
567
569
568 def manifest(self):
569 return self._changectx.manifest()
570 def changectx(self):
570 def changectx(self):
571 return self._changectx
571 return self._changectx
572
572
General Comments 0
You need to be logged in to leave comments. Login now