| 187 | } |
| 188 | |
| 189 | uint64_t FileAccessEncryptedCustom::_get_modified_time(const String &p_file) { |
| 190 | if (file.is_valid()) { |
| 191 | return file->get_modified_time(p_file); |
| 192 | } else { |
| 193 | return 0; |
| 194 | } |
| 195 | } |
| 196 | |
| 197 | uint64_t FileAccessEncryptedCustom::_get_access_time(const String &p_file) { |
| 198 | if (file.is_valid()) { |
nothing calls this directly
no test coverage detected