Merge pull request #39111 from nathanfranke/directory_remove_print

Remove "erasing" print from Directory.remove (Windows)
This commit is contained in:
Rémi Verschelde 2020-05-28 13:54:57 +02:00 committed by GitHub
commit 1455776958
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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());