removed some redundant code

This commit is contained in:
MihailRis
2024-04-29 02:58:35 +03:00
parent 63768ccd6d
commit 1401eca712
5 changed files with 31 additions and 56 deletions
-8
View File
@@ -40,14 +40,6 @@ ContentGfxCache::ContentGfxCache(const Content* content, Assets* assets) : conte
ContentGfxCache::~ContentGfxCache() {
}
std::shared_ptr<UiDocument> ContentGfxCache::getLayout(const std::string& id) {
auto found = layouts.find(id);
if (found == layouts.end()) {
return nullptr;
}
return found->second;
}
const Content* ContentGfxCache::getContent() const {
return content;
}