mercurial/dirstate.py
changeset 48413 c6d00759dc2b
parent 48393 1a8a70b4b0ad
child 48531 934a6213fee9
--- 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))