mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-08 01:00:05 +00:00
LibGfx: Remove debug output
This commit is contained in:
parent
9a2c8102cd
commit
a1c0eb1e1d
Notes:
sideshowbarker
2024-07-19 07:18:33 +09:00
Author: https://github.com/peterdn
Commit: a1c0eb1e1d
Pull-request: https://github.com/SerenityOS/serenity/pull/1950
1 changed files with 0 additions and 2 deletions
|
@ -34,13 +34,11 @@ ImageDecoder::ImageDecoder(const u8* data, size_t size)
|
||||||
{
|
{
|
||||||
m_plugin = make<PNGImageDecoderPlugin>(data, size);
|
m_plugin = make<PNGImageDecoderPlugin>(data, size);
|
||||||
if (m_plugin->sniff()) {
|
if (m_plugin->sniff()) {
|
||||||
dbg() << "Decoding image as a PNG";
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
m_plugin = make<GIFImageDecoderPlugin>(data, size);
|
m_plugin = make<GIFImageDecoderPlugin>(data, size);
|
||||||
if (m_plugin->sniff()) {
|
if (m_plugin->sniff()) {
|
||||||
dbg() << "Decoding image as a GIF";
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue