##// END OF EJS Templates
dirstate: narrow gathering of parent data...
marmoute -
r48953:42ab0bcb default
parent child Browse files
Show More
@@ -525,11 +525,8 b' class dirstate(object):'
525 if entry is not None and entry.added:
525 if entry is not None and entry.added:
526 return # avoid dropping copy information (maybe?)
526 return # avoid dropping copy information (maybe?)
527
527
528 # this mean we are doing call for file we do not really care about the
529 # data (eg: added or removed), however this should be a minor overhead
530 # compared to the overall update process calling this.
531 parentfiledata = None
528 parentfiledata = None
532 if wc_tracked:
529 if wc_tracked and p1_tracked:
533 parentfiledata = self._get_filedata(filename)
530 parentfiledata = self._get_filedata(filename)
534
531
535 self._map.reset_state(
532 self._map.reset_state(
General Comments 0
You need to be logged in to leave comments. Login now