dirstate: remove unused method
Its last usage was inlined in `merge.py`.
Differential Revision: https://phab.mercurial-scm.org/D11849
--- a/mercurial/dirstate.py Sat Dec 04 03:51:33 2021 +0100
+++ b/mercurial/dirstate.py Fri Dec 03 15:06:40 2021 +0100
@@ -591,14 +591,6 @@
msg %= (pycompat.bytestr(d), pycompat.bytestr(filename))
raise error.Abort(msg)
- def _get_filedata(self, filename):
- """returns"""
- s = os.lstat(self._join(filename))
- mode = s.st_mode
- size = s.st_size
- mtime = timestamp.mtime_of(s)
- return (mode, size, mtime)
-
def _discoverpath(self, path, normed, ignoremissing, exists, storemap):
if exists is None:
exists = os.path.lexists(os.path.join(self._root, path))