This is an automated email from the ASF dual-hosted git repository. kinow pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-imaging.git
The following commit(s) were added to refs/heads/master by this push: new 544760b6 Add a TODO marker to a comment 544760b6 is described below commit 544760b6a095bc59b2efc85c8f80d86684f941c3 Author: Bruno P. Kinoshita <ki...@users.noreply.github.com> AuthorDate: Sun Aug 14 16:29:54 2022 +1200 Add a TODO marker to a comment --- .../java/org/apache/commons/imaging/formats/jpeg/JpegImageParser.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/imaging/formats/jpeg/JpegImageParser.java b/src/main/java/org/apache/commons/imaging/formats/jpeg/JpegImageParser.java index ed0e189a..40b31028 100644 --- a/src/main/java/org/apache/commons/imaging/formats/jpeg/JpegImageParser.java +++ b/src/main/java/org/apache/commons/imaging/formats/jpeg/JpegImageParser.java @@ -806,7 +806,7 @@ public class JpegImageParser extends ImageParser<JpegImagingParameters> implemen final ImageFormat format = ImageFormats.JPEG; final String formatName = "JPEG (Joint Photographic Experts Group) Format"; final String mimeType = "image/jpeg"; - // we ought to count images, but don't yet. + // TODO: we ought to count images, but don't yet. final int numberOfImages = 1; // not accurate ... only reflects first final boolean progressive = fSOFNSegment.marker == JpegConstants.SOF2_MARKER;