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

ggregory 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 a57fe736 Javadoc
a57fe736 is described below

commit a57fe7367fa4220a60fca0a05df2ef1c37d75f76
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Sep 22 10:34:45 2025 -0400

    Javadoc
    
    - No need to a FQCN in these cases
    - Fix tag order
---
 .../apache/commons/imaging/formats/jpeg/exif/ExifRewriter.java    | 6 ++----
 .../commons/imaging/formats/jpeg/iptc/JpegIptcRewriter.java       | 8 ++++----
 .../apache/commons/imaging/formats/jpeg/xmp/JpegXmpRewriter.java  | 4 ++--
 3 files changed, 8 insertions(+), 10 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/imaging/formats/jpeg/exif/ExifRewriter.java 
b/src/main/java/org/apache/commons/imaging/formats/jpeg/exif/ExifRewriter.java
index 1e34354e..ab131294 100644
--- 
a/src/main/java/org/apache/commons/imaging/formats/jpeg/exif/ExifRewriter.java
+++ 
b/src/main/java/org/apache/commons/imaging/formats/jpeg/exif/ExifRewriter.java
@@ -221,10 +221,8 @@ public class ExifRewriter extends BinaryFileParser {
      * @throws ImagingException if it fails to read the JFIF segments
      * @throws IOException      if it fails to read the image data
      * @throws ImagingException if it fails to write the updated data
-     * @see java.io.File
-     * @see java.io.OutputStream
-     * @see java.io.File
-     * @see java.io.OutputStream
+     * @see File
+     * @see OutputStream
      */
     public void removeExifMetadata(final File src, final OutputStream os) 
throws ImagingException, IOException, ImagingException {
         final ByteSource byteSource = ByteSource.file(src);
diff --git 
a/src/main/java/org/apache/commons/imaging/formats/jpeg/iptc/JpegIptcRewriter.java
 
b/src/main/java/org/apache/commons/imaging/formats/jpeg/iptc/JpegIptcRewriter.java
index 460b032c..26aab888 100644
--- 
a/src/main/java/org/apache/commons/imaging/formats/jpeg/iptc/JpegIptcRewriter.java
+++ 
b/src/main/java/org/apache/commons/imaging/formats/jpeg/iptc/JpegIptcRewriter.java
@@ -131,8 +131,8 @@ public class JpegIptcRewriter extends JpegRewriter {
      * @throws ImagingException if there are more than one Photoshop App13 
segment, or if the Photoshop segment cannot be parsed
      * @throws IOException      if it fails to read from the origin byte 
source, or to write to the target byte source
      * @throws ImagingException if it fails to write the target image
-     * @see java.io.File
-     * @see java.io.OutputStream
+     * @see File
+     * @see OutputStream
      */
     public void removeIptc(final File src, final OutputStream os) throws 
ImagingException, IOException, ImagingException {
         removeIptc(src, os, false);
@@ -145,11 +145,11 @@ public class JpegIptcRewriter extends JpegRewriter {
      * @param src           Image file.
      * @param os            OutputStream to write the image to.
      * @param removeSegment Remove the App13 segment.
-     * @see java.io.File
-     * @see java.io.OutputStream
      * @throws ImagingException if there are more than one Photoshop App13 
segment, or if the Photoshop segment cannot be parsed
      * @throws IOException      if it fails to read from the origin byte 
source, or to write to the target byte source
      * @throws ImagingException if it fails to write the target image
+     * @see File
+     * @see OutputStream
      */
     public void removeIptc(final File src, final OutputStream os, final 
boolean removeSegment) throws ImagingException, IOException, ImagingException {
         final ByteSource byteSource = ByteSource.file(src);
diff --git 
a/src/main/java/org/apache/commons/imaging/formats/jpeg/xmp/JpegXmpRewriter.java
 
b/src/main/java/org/apache/commons/imaging/formats/jpeg/xmp/JpegXmpRewriter.java
index bb6d7653..103c23ab 100644
--- 
a/src/main/java/org/apache/commons/imaging/formats/jpeg/xmp/JpegXmpRewriter.java
+++ 
b/src/main/java/org/apache/commons/imaging/formats/jpeg/xmp/JpegXmpRewriter.java
@@ -74,10 +74,10 @@ public class JpegXmpRewriter extends JpegRewriter {
      *
      * @param src Image file.
      * @param os  OutputStream to write the image to.
-     * @see java.io.File
-     * @see java.io.OutputStream
      * @throws ImagingException if it fails to read the JFIF segments
      * @throws IOException      if it fails to read or write the data from the 
segments
+     * @see File
+     * @see OutputStream
      */
     public void removeXmpXml(final File src, final OutputStream os) throws 
ImagingException, IOException {
         final ByteSource byteSource = ByteSource.file(src);

Reply via email to