LibGfx/JPEG: Remove the unused method initialize()

This commit is contained in:
Lucas CHOLLET 2023-07-13 23:24:39 -04:00 committed by Andreas Kling
parent d29bd55b48
commit 2f125b86aa
Notes: sideshowbarker 2024-07-17 22:41:14 +09:00
2 changed files with 0 additions and 6 deletions

View File

@ -1931,11 +1931,6 @@ IntSize JPEGImageDecoderPlugin::size()
return {};
}
ErrorOr<void> JPEGImageDecoderPlugin::initialize()
{
return {};
}
bool JPEGImageDecoderPlugin::sniff(ReadonlyBytes data)
{
return data.size() > 3

View File

@ -24,7 +24,6 @@ public:
virtual ~JPEGImageDecoderPlugin() override;
virtual IntSize size() override;
virtual ErrorOr<void> initialize() override;
virtual bool is_animated() override;
virtual size_t loop_count() override;
virtual size_t frame_count() override;