##// 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 503 return self._changectx.description()
504 504 def branch(self):
505 505 return self._changectx.branch()
506 def extra(self):
507 return self._changectx.extra()
506 508
507 509 class filectx(basefilectx):
508 510 """A filecontext object makes access to data related to a particular
@@ -559,8 +561,6 b' class filectx(basefilectx):'
559 561 return filectx(self._repo, self._path, fileid=fileid,
560 562 filelog=self._filelog)
561 563
562 def extra(self):
563 return self._changectx.extra()
564 564 def phase(self):
565 565 return self._changectx.phase()
566 566 def phasestr(self):
General Comments 0
You need to be logged in to leave comments. Login now