1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 09:28:13 +00:00

PixelPaint: Remove unused includes and method

This commit is contained in:
Jelle Raaijmakers 2023-08-08 20:23:54 +02:00 committed by Daniel Bertalan
parent a35f4bf14e
commit e272f796ad
2 changed files with 0 additions and 3 deletions

View file

@ -21,7 +21,6 @@ public:
ErrorOr<void> load_from_file(NonnullOwnPtr<Core::File>);
bool is_raw_image() const { return m_is_raw_image; }
bool has_image() const { return !m_image.is_null(); }
RefPtr<Image> release_image() const { return move(m_image); }
JsonArray const& json_metadata() const { return m_json_metadata; }