fix(Directory): remove erasing print

Fixes #39106
This commit is contained in:
Nathan Franke 2020-05-27 22:51:23 -05:00
parent 1a53ee66c1
commit e48fb01d59
No known key found for this signature in database
GPG Key ID: 4E880DD8076949F7
1 changed files with 0 additions and 4 deletions

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