Show More
@@ -497,6 +497,8 b' class basefilectx(object):' | |||
|
497 | 497 | return self._changectx.user() |
|
498 | 498 | def date(self): |
|
499 | 499 | return self._changectx.date() |
|
500 | def files(self): | |
|
501 | return self._changectx.files() | |
|
500 | 502 | |
|
501 | 503 | class filectx(basefilectx): |
|
502 | 504 | """A filecontext object makes access to data related to a particular |
@@ -553,8 +555,6 b' class filectx(basefilectx):' | |||
|
553 | 555 | return filectx(self._repo, self._path, fileid=fileid, |
|
554 | 556 | filelog=self._filelog) |
|
555 | 557 | |
|
556 | def files(self): | |
|
557 | return self._changectx.files() | |
|
558 | 558 | def description(self): |
|
559 | 559 | return self._changectx.description() |
|
560 | 560 | def branch(self): |
General Comments 0
You need to be logged in to leave comments.
Login now