소스 검색

Merge pull request #39111 from nathanfranke/directory_remove_print

Remove "erasing" print from Directory.remove (Windows)
Rémi Verschelde 5 년 전
부모
커밋
1455776958
1개의 변경된 파일0개의 추가작업 그리고 4개의 파일을 삭제
  1. 0 4
      drivers/windows/dir_access_windows.cpp

+ 0 - 4
drivers/windows/dir_access_windows.cpp

@@ -286,10 +286,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());