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