This is an automated email from the ASF dual-hosted git repository.

garydgregory 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 3edefda0 Javadoc
3edefda0 is described below

commit 3edefda07862ef374b0da5f2d9b2f6475c0cf484
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Jun 30 14:01:26 2026 +0000

    Javadoc
---
 .../imaging/formats/jpeg/xmp/JpegRewriter.java       | 20 ++++++++++----------
 .../commons/imaging/internal/ImageParserFactory.java |  6 +++---
 2 files changed, 13 insertions(+), 13 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/imaging/formats/jpeg/xmp/JpegRewriter.java 
b/src/main/java/org/apache/commons/imaging/formats/jpeg/xmp/JpegRewriter.java
index 8af44ff2..be2e567a 100644
--- 
a/src/main/java/org/apache/commons/imaging/formats/jpeg/xmp/JpegRewriter.java
+++ 
b/src/main/java/org/apache/commons/imaging/formats/jpeg/xmp/JpegRewriter.java
@@ -308,7 +308,7 @@ public class JpegRewriter extends BinaryFileParser {
     /**
      * Filters segments using a filter.
      *
-     * @param <T> the piece type.
+     * @param <T> The piece type.
      * @param segments the segments.
      * @param filter the filter.
      * @return the filtered segments.
@@ -320,7 +320,7 @@ public class JpegRewriter extends BinaryFileParser {
     /**
      * Filters segments using a filter with optional reverse logic.
      *
-     * @param <T> the piece type.
+     * @param <T> The piece type.
      * @param segments the segments.
      * @param filter the filter.
      * @param reverse whether to reverse the filter logic.
@@ -345,7 +345,7 @@ public class JpegRewriter extends BinaryFileParser {
     /**
      * Finds Photoshop APP13 segments.
      *
-     * @param <T> the piece type.
+     * @param <T> The piece type.
      * @param segments the segments.
      * @return the filtered segments.
      */
@@ -356,8 +356,8 @@ public class JpegRewriter extends BinaryFileParser {
     /**
      * Inserts new segments after last APP segment.
      *
-     * @param <T> the piece type.
-     * @param <U> the new piece type.
+     * @param <T> The piece type.
+     * @param <U> The new piece type.
      * @param segments the segments.
      * @param newSegments the new segments to insert.
      * @return the combined segments.
@@ -394,8 +394,8 @@ public class JpegRewriter extends BinaryFileParser {
     /**
      * Inserts new segments before first APP segment.
      *
-     * @param <T> the piece type.
-     * @param <U> the new piece type.
+     * @param <T> The piece type.
+     * @param <U> The new piece type.
      * @param segments the segments.
      * @param newSegments the new segments to insert.
      * @return the combined segments.
@@ -427,7 +427,7 @@ public class JpegRewriter extends BinaryFileParser {
     /**
      * Removes EXIF segments.
      *
-     * @param <T> the piece type.
+     * @param <T> The piece type.
      * @param segments the segments.
      * @return the filtered segments.
      */
@@ -438,7 +438,7 @@ public class JpegRewriter extends BinaryFileParser {
     /**
      * Removes Photoshop APP13 segments.
      *
-     * @param <T> the piece type.
+     * @param <T> The piece type.
      * @param segments the segments.
      * @return the filtered segments.
      */
@@ -449,7 +449,7 @@ public class JpegRewriter extends BinaryFileParser {
     /**
      * Removes XMP segments.
      *
-     * @param <T> the piece type.
+     * @param <T> The piece type.
      * @param segments the segments.
      * @return the filtered segments.
      */
diff --git 
a/src/main/java/org/apache/commons/imaging/internal/ImageParserFactory.java 
b/src/main/java/org/apache/commons/imaging/internal/ImageParserFactory.java
index c180eed1..6ad9a5a8 100644
--- a/src/main/java/org/apache/commons/imaging/internal/ImageParserFactory.java
+++ b/src/main/java/org/apache/commons/imaging/internal/ImageParserFactory.java
@@ -38,7 +38,7 @@ public final class ImageParserFactory {
     /**
      * Gets an image parser for the given byte source.
      *
-     * @param <T> the imaging parameters type.
+     * @param <T> The imaging parameters type.
      * @param byteSource the byte source.
      * @return the image parser.
      * @throws IOException if an I/O error occurs.
@@ -59,7 +59,7 @@ public final class ImageParserFactory {
     /**
      * Gets an image parser for the given image format.
      *
-     * @param <T> the imaging parameters type.
+     * @param <T> The imaging parameters type.
      * @param format the image format.
      * @return the image parser.
      */
@@ -78,7 +78,7 @@ public final class ImageParserFactory {
     /**
      * Gets an image parser for the given file extension.
      *
-     * @param <T> the imaging parameters type.
+     * @param <T> The imaging parameters type.
      * @param fileExtension the file extension.
      * @return the image parser.
      */

Reply via email to