##// END OF EJS Templates
commitablectx: move removed from workingctx
Sean Farley -
r19682:42ffc7f3 default
parent child Browse files
Show More
@@ -974,6 +974,8 b' class commitablectx(basectx):'
974 return self._status[0]
974 return self._status[0]
975 def added(self):
975 def added(self):
976 return self._status[1]
976 return self._status[1]
977 def removed(self):
978 return self._status[2]
977
979
978 class workingctx(commitablectx):
980 class workingctx(commitablectx):
979 """A workingctx object makes access to data related to
981 """A workingctx object makes access to data related to
@@ -1001,8 +1003,6 b' class workingctx(commitablectx):'
1001 p = p[:-1]
1003 p = p[:-1]
1002 return [changectx(self._repo, x) for x in p]
1004 return [changectx(self._repo, x) for x in p]
1003
1005
1004 def removed(self):
1005 return self._status[2]
1006 def deleted(self):
1006 def deleted(self):
1007 return self._status[3]
1007 return self._status[3]
1008 def unknown(self):
1008 def unknown(self):
General Comments 0
You need to be logged in to leave comments. Login now