From 219717fc215c50c77a3027cc543e88c22e868658 Mon Sep 17 00:00:00 2001 From: Nathan Franke Date: Wed, 27 May 2020 22:51:23 -0500 Subject: [PATCH] fix(Directory): remove erasing print Fixes #39106 (cherry picked from commit e48fb01d594d62ca1367122d9802177651522f44) --- drivers/windows/dir_access_windows.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/drivers/windows/dir_access_windows.cpp b/drivers/windows/dir_access_windows.cpp index c5a710ee8dc..797fc23c279 100644 --- a/drivers/windows/dir_access_windows.cpp +++ b/drivers/windows/dir_access_windows.cpp @@ -308,10 +308,6 @@ Error DirAccessWindows::remove(String p_path) { p_path = fix_path(p_path); - printf("erasing %s\n", p_path.utf8().get_data()); - //WIN32_FILE_ATTRIBUTE_DATA fileInfo; - //DWORD fileAttr = GetFileAttributesExW(p_path.c_str(), GetFileExInfoStandard, &fileInfo); - DWORD fileAttr; fileAttr = GetFileAttributesW(p_path.c_str());