mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-01 07:35:02 +03:00
LibGfx/JPEG: Remove the unused method initialize()
This commit is contained in:
parent
d29bd55b48
commit
2f125b86aa
Notes:
sideshowbarker
2024-07-17 22:41:14 +09:00
Author: https://github.com/LucasChollet Commit: https://github.com/SerenityOS/serenity/commit/2f125b86aa Pull-request: https://github.com/SerenityOS/serenity/pull/20012 Issue: https://github.com/SerenityOS/serenity/issues/19815
@ -1931,11 +1931,6 @@ IntSize JPEGImageDecoderPlugin::size()
|
||||
return {};
|
||||
}
|
||||
|
||||
ErrorOr<void> JPEGImageDecoderPlugin::initialize()
|
||||
{
|
||||
return {};
|
||||
}
|
||||
|
||||
bool JPEGImageDecoderPlugin::sniff(ReadonlyBytes data)
|
||||
{
|
||||
return data.size() > 3
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user