| 46 | } |
| 47 | |
| 48 | bool AnimeWorker::hasAnime(const QString &name) |
| 49 | { |
| 50 | QReadLocker l(&animeMapLock); |
| 51 | if(animesMap.contains(name)) return true; |
| 52 | return checkAnimeExist(name); |
| 53 | } |
| 54 | |
| 55 | QSharedPointer<Anime> AnimeWorker::getSingleAnime(const QString &name) |
| 56 | { |
no test coverage detected