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