chore: remove empty lines

This commit is contained in:
Almamu 2025-09-12 03:30:21 +02:00
parent a86f258c6c
commit 79886ecc89
2 changed files with 0 additions and 2 deletions

View File

@ -33,6 +33,5 @@ class MouseInput {
* @return The status of the mouse's right click * @return The status of the mouse's right click
*/ */
[[nodiscard]] virtual MouseClickStatus rightClick () const = 0; [[nodiscard]] virtual MouseClickStatus rightClick () const = 0;
}; };
} // namespace WallpaperEngine::Input } // namespace WallpaperEngine::Input

View File

@ -16,7 +16,6 @@ using namespace WallpaperEngine::Data::Parsers;
TextureCache::TextureCache (RenderContext& context) : Helpers::ContextAware (context) {} TextureCache::TextureCache (RenderContext& context) : Helpers::ContextAware (context) {}
std::shared_ptr<const TextureProvider> TextureCache::resolve (const std::string& filename) { std::shared_ptr<const TextureProvider> TextureCache::resolve (const std::string& filename) {
if (const auto found = this->m_textureCache.find (filename); found != this->m_textureCache.end ()) if (const auto found = this->m_textureCache.find (filename); found != this->m_textureCache.end ())
return found->second; return found->second;