basefilectx: move filenode from filectx
authorSean Farley <sean.michael.farley@gmail.com>
Sun, 11 Aug 2013 22:50:37 -0500
changeset 19585 8e553cd6071e
parent 19584 fe300e63c28c
child 19586 43f9ed2f64b1
basefilectx: move filenode from filectx
mercurial/context.py
--- a/mercurial/context.py	Sun Aug 11 22:50:15 2013 -0500
+++ b/mercurial/context.py	Sun Aug 11 22:50:37 2013 -0500
@@ -479,6 +479,8 @@
 
     def filerev(self):
         return self._filerev
+    def filenode(self):
+        return self._filenode
 
 class filectx(basefilectx):
     """A filecontext object makes access to data related to a particular
@@ -535,8 +537,6 @@
         return filectx(self._repo, self._path, fileid=fileid,
                        filelog=self._filelog)
 
-    def filenode(self):
-        return self._filenode
     def flags(self):
         return self._changectx.flags(self._path)
     def filelog(self):