##// END OF EJS Templates
basefilectx: move extra from filectx
Sean Farley -
r19597:837bc863 default
parent child Browse files
Show More
@@ -503,6 +503,8 b' class basefilectx(object):'
503 return self._changectx.description()
503 return self._changectx.description()
504 def branch(self):
504 def branch(self):
505 return self._changectx.branch()
505 return self._changectx.branch()
506 def extra(self):
507 return self._changectx.extra()
506
508
507 class filectx(basefilectx):
509 class filectx(basefilectx):
508 """A filecontext object makes access to data related to a particular
510 """A filecontext object makes access to data related to a particular
@@ -559,8 +561,6 b' class filectx(basefilectx):'
559 return filectx(self._repo, self._path, fileid=fileid,
561 return filectx(self._repo, self._path, fileid=fileid,
560 filelog=self._filelog)
562 filelog=self._filelog)
561
563
562 def extra(self):
563 return self._changectx.extra()
564 def phase(self):
564 def phase(self):
565 return self._changectx.phase()
565 return self._changectx.phase()
566 def phasestr(self):
566 def phasestr(self):
General Comments 0
You need to be logged in to leave comments. Login now