# HG changeset patch # User Raphaël Gomès # Date 1638540400 -3600 # Node ID c6d00759dc2b6ddea55c7337d7211d53546f7cb2 # Parent 0b2469bf1227dcee7e1eab4bddd17334b0702e72 dirstate: remove unused method Its last usage was inlined in `merge.py`. Differential Revision: https://phab.mercurial-scm.org/D11849 diff -r 0b2469bf1227 -r c6d00759dc2b mercurial/dirstate.py --- 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))