##// END OF EJS Templates
dirstate: remove unused method...
Raphaël Gomès -
r49241:c6d00759 default
parent child Browse files
Show More
@@ -591,14 +591,6 b' class dirstate(object):'
591 msg %= (pycompat.bytestr(d), pycompat.bytestr(filename))
591 msg %= (pycompat.bytestr(d), pycompat.bytestr(filename))
592 raise error.Abort(msg)
592 raise error.Abort(msg)
593
593
594 def _get_filedata(self, filename):
595 """returns"""
596 s = os.lstat(self._join(filename))
597 mode = s.st_mode
598 size = s.st_size
599 mtime = timestamp.mtime_of(s)
600 return (mode, size, mtime)
601
602 def _discoverpath(self, path, normed, ignoremissing, exists, storemap):
594 def _discoverpath(self, path, normed, ignoremissing, exists, storemap):
603 if exists is None:
595 if exists is None:
604 exists = os.path.lexists(os.path.join(self._root, path))
596 exists = os.path.lexists(os.path.join(self._root, path))
General Comments 0
You need to be logged in to leave comments. Login now