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

@ -8,8 +8,6 @@
#include "Image.h"
#include "Layer.h"
#include <AK/JsonObject.h>
#include <AK/Result.h>
#include <LibCore/MappedFile.h>
#include <LibImageDecoderClient/Client.h>
namespace PixelPaint {

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; }