##// END OF EJS Templates
commitablectx: move hidden from workingctx
Sean Farley -
r19693:56ba14d4 default
parent child Browse files
Show More
@@ -1012,6 +1012,9 b' class commitablectx(basectx):'
1012 1012 phase = max(phase, p.phase())
1013 1013 return phase
1014 1014
1015 def hidden(self):
1016 return False
1017
1015 1018 class workingctx(commitablectx):
1016 1019 """A workingctx object makes access to data related to
1017 1020 the current working directory convenient.
@@ -1038,9 +1041,6 b' class workingctx(commitablectx):'
1038 1041 p = p[:-1]
1039 1042 return [changectx(self._repo, x) for x in p]
1040 1043
1041 def hidden(self):
1042 return False
1043
1044 1044 def children(self):
1045 1045 return []
1046 1046
General Comments 0
You need to be logged in to leave comments. Login now