fix(Directory): remove erasing print

Fixes #39106

(cherry picked from commit e48fb01d59)
This commit is contained in:
Nathan Franke 2020-05-27 22:51:23 -05:00 committed by Rémi Verschelde
parent a3bd201cc7
commit 219717fc21
1 changed files with 0 additions and 4 deletions

View File

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