LibGfx/PNM: Remove unnecessary line

This is already done at the caller decode() in
PortableImageLoaderCommon.h, as pointed out by @LucasChollet at
https://github.com/SerenityOS/serenity/pull/22935#discussion_r1467158789

No behavior change.
This commit is contained in:
Nico Weber 2024-01-26 08:08:17 -05:00 committed by Andreas Kling
commit 83ab9f7c2d
Notes: sideshowbarker 2024-07-17 00:37:23 +09:00
4 changed files with 0 additions and 4 deletions

View file

@ -36,7 +36,6 @@ ErrorOr<void> read_image_data(PGMLoadingContext& context)
}
}
context.state = PGMLoadingContext::State::BitmapDecoded;
return {};
}
}