##// END OF EJS Templates
dirstate: add dedicated function for updating data of a file...
Pulkit Goyal -
r48412:a9d75262 default
parent child Browse files
Show More
@@ -593,6 +593,14 b' class dirstate(object):'
593 else:
593 else:
594 assert False, 'unreachable'
594 assert False, 'unreachable'
595
595
596 @requires_parents_change
597 def update_parent_file_data(self, f, filedata):
598 """update the information about the content of a file
599
600 This function should be called within a `dirstate.parentchange` context.
601 """
602 self.normal(f, parentfiledata=filedata)
603
596 def _addpath(
604 def _addpath(
597 self,
605 self,
598 f,
606 f,
General Comments 0
You need to be logged in to leave comments. Login now