##// END OF EJS Templates
basefilectx: move files from filectx
Sean Farley -
r19594:1c030c24 default
parent child Browse files
Show More
@@ -497,6 +497,8 b' class basefilectx(object):'
497 return self._changectx.user()
497 return self._changectx.user()
498 def date(self):
498 def date(self):
499 return self._changectx.date()
499 return self._changectx.date()
500 def files(self):
501 return self._changectx.files()
500
502
501 class filectx(basefilectx):
503 class filectx(basefilectx):
502 """A filecontext object makes access to data related to a particular
504 """A filecontext object makes access to data related to a particular
@@ -553,8 +555,6 b' class filectx(basefilectx):'
553 return filectx(self._repo, self._path, fileid=fileid,
555 return filectx(self._repo, self._path, fileid=fileid,
554 filelog=self._filelog)
556 filelog=self._filelog)
555
557
556 def files(self):
557 return self._changectx.files()
558 def description(self):
558 def description(self):
559 return self._changectx.description()
559 return self._changectx.description()
560 def branch(self):
560 def branch(self):
General Comments 0
You need to be logged in to leave comments. Login now