commitablectx: move removed from workingctx
authorSean Farley <sean.michael.farley@gmail.com>
Wed, 14 Aug 2013 16:15:29 -0500
changeset 19682 42ffc7f31acf
parent 19681 cfc4ae65023f
child 19683 6336f35ed77d
commitablectx: move removed from workingctx
mercurial/context.py
--- a/mercurial/context.py	Wed Aug 14 16:15:18 2013 -0500
+++ b/mercurial/context.py	Wed Aug 14 16:15:29 2013 -0500
@@ -974,6 +974,8 @@
         return self._status[0]
     def added(self):
         return self._status[1]
+    def removed(self):
+        return self._status[2]
 
 class workingctx(commitablectx):
     """A workingctx object makes access to data related to
@@ -1001,8 +1003,6 @@
             p = p[:-1]
         return [changectx(self._repo, x) for x in p]
 
-    def removed(self):
-        return self._status[2]
     def deleted(self):
         return self._status[3]
     def unknown(self):