1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:37:35 +00:00

LibGfx/JPEGXL: Remove unused variables in JPEGXLLoadingContext

These two variables are already fields of `Frame`, they make no sense at
the context scope.
This commit is contained in:
Lucas CHOLLET 2023-08-11 13:19:36 -04:00 committed by Daniel Bertalan
parent 294a778492
commit 729e35ef21

View file

@ -2600,9 +2600,6 @@ private:
SizeHeader m_header;
ImageMetadata m_metadata;
FrameHeader m_frame_header;
TOC m_toc;
};
JPEGXLImageDecoderPlugin::JPEGXLImageDecoderPlugin(NonnullOwnPtr<FixedMemoryStream> stream)