##// END OF EJS Templates
cleanup: drop `dirstate.is_changing_parent` deprecated since 6.5...
marmoute -
r52028:88ef8021 default
parent child Browse files
Show More
@@ -408,16 +408,6 b' class dirstate:'
408 408 """
409 409 return self._changing_level > 0
410 410
411 def pendingparentchange(self):
412 return self.is_changing_parent()
413
414 def is_changing_parent(self):
415 """Returns true if the dirstate is in the middle of a set of changes
416 that modify the dirstate parent.
417 """
418 self._ui.deprecwarn(b"dirstate.is_changing_parents", b"6.5")
419 return self.is_changing_parents
420
421 411 @property
422 412 def is_changing_parents(self):
423 413 """Returns true if the dirstate is in the middle of a set of changes
General Comments 0
You need to be logged in to leave comments. Login now