Quellcode durchsuchen

fix(Directory): remove erasing print

Fixes #39106

(cherry picked from commit e48fb01d594d62ca1367122d9802177651522f44)
Nathan Franke vor 5 Jahren
Ursprung
Commit
219717fc21
1 geänderte Dateien mit 0 neuen und 4 gelöschten Zeilen
  1. 0 4
      drivers/windows/dir_access_windows.cpp

+ 0 - 4
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());