gwlucastrig commented on code in PR #334:
URL: https://github.com/apache/commons-imaging/pull/334#discussion_r1391390920
##########
src/main/java/org/apache/commons/imaging/formats/jpeg/decoder/JpegDecoder.java:
##########
@@ -46,6 +46,10 @@
import org.apache.commons.imaging.formats.jpeg.segments.SosSegment;
public class JpegDecoder extends BinaryFileParser implements JpegUtils.Visitor
{
+
+ private static final int [] BAND_MASK_ARGB = {0x00ff0000, 0x0000ff00,
0x000000ff, 0xff000000};
Review Comment:
Oops. I used them on lines 468 and 472. But I neglected to remove the old
lines on 467 and 471. Will submit and additional change.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]