mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-20 19:45:12 +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: https://github.com/SerenityOS/serenity/commit/a1c0eb1e1d3 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);
|
||||
if (m_plugin->sniff()) {
|
||||
dbg() << "Decoding image as a PNG";
|
||||
return;
|
||||
}
|
||||
|
||||
m_plugin = make<GIFImageDecoderPlugin>(data, size);
|
||||
if (m_plugin->sniff()) {
|
||||
dbg() << "Decoding image as a GIF";
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue