summaryrefslogtreecommitdiffstats
path: root/drivers/unix/file_access_unix.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-09-26 12:45:31 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-09-26 12:45:31 +0200
commitef7547384c962f536b9020b74cf0984a534007bb (patch)
treede60dcfd8b818aa67e0eb6d21d13d60d6f917d7e /drivers/unix/file_access_unix.cpp
parent9d5b59b2ae456a1f9a98c918cef6ef217f52d31c (diff)
parent21f7c8a25f23c40541925c95d7d25f52f81c9811 (diff)
downloadredot-engine-ef7547384c962f536b9020b74cf0984a534007bb.tar.gz
Merge pull request #95678 from Hilderin/fix-slow-load-on-large-project-v2
Fix slow editor load on large projects (v2)
Diffstat (limited to 'drivers/unix/file_access_unix.cpp')
-rw-r--r--drivers/unix/file_access_unix.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/unix/file_access_unix.cpp b/drivers/unix/file_access_unix.cpp
index 32f2d7dd79..3d584341ed 100644
--- a/drivers/unix/file_access_unix.cpp
+++ b/drivers/unix/file_access_unix.cpp
@@ -294,7 +294,6 @@ uint64_t FileAccessUnix::_get_modified_time(const String &p_file) {
if (!err) {
return status.st_mtime;
} else {
- WARN_PRINT("Failed to get modified time for: " + p_file);
return 0;
}
}