| 48 | {} |
| 49 | |
| 50 | Hashing::Hasher::Ptr EnsureMetadataTask::createNewHash(Mod* mod) |
| 51 | { |
| 52 | if (!mod || !mod->valid() || mod->type() == ResourceType::FOLDER) |
| 53 | return nullptr; |
| 54 | |
| 55 | return Hashing::createHasher(mod->fileinfo().absoluteFilePath(), m_provider); |
| 56 | } |
| 57 | |
| 58 | QString EnsureMetadataTask::getExistingHash(Mod* mod) |
| 59 | { |
nothing calls this directly
no test coverage detected