Show More
@@ -582,17 +582,8 b' class dirstate(object):' | |||
|
582 | 582 | # this mean we are doing call for file we do not really care about the |
|
583 | 583 | # data (eg: added or removed), however this should be a minor overhead |
|
584 | 584 | # compared to the overall update process calling this. |
|
585 | if need_parent_file_data: | |
|
586 |
|
|
|
587 | parentfiledata = self._get_filedata(filename) | |
|
588 | mtime = parentfiledata[2] | |
|
589 | ||
|
590 | if mtime > self._lastnormaltime: | |
|
591 | # Remember the most recent modification timeslot for | |
|
592 | # status(), to make sure we won't miss future | |
|
593 | # size-preserving file content modifications that happen | |
|
594 | # within the same timeslot. | |
|
595 | self._lastnormaltime = mtime | |
|
585 | if need_parent_file_data or parentfiledata is None: | |
|
586 | parentfiledata = self._get_filedata(filename) | |
|
596 | 587 | |
|
597 | 588 | self._map.reset_state( |
|
598 | 589 | filename, |
General Comments 0
You need to be logged in to leave comments.
Login now