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 797becc6 Javadoc: Don't use FQCN in throws clause.
797becc6 is described below

commit 797becc6c8708c07f64e453f294fc4361ba53d43
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat May 21 15:21:59 2022 -0400

    Javadoc: Don't use FQCN in throws clause.
---
 .../commons/imaging/examples/tiff/ExampleReadFloatingPointData.java     | 2 +-
 .../commons/imaging/examples/tiff/ReadAndRenderFloatingPoint.java       | 2 +-
 .../org/apache/commons/imaging/examples/tiff/ReadTagsAndImages.java     | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/src/test/java/org/apache/commons/imaging/examples/tiff/ExampleReadFloatingPointData.java
 
b/src/test/java/org/apache/commons/imaging/examples/tiff/ExampleReadFloatingPointData.java
index 816a5573..255e962c 100644
--- 
a/src/test/java/org/apache/commons/imaging/examples/tiff/ExampleReadFloatingPointData.java
+++ 
b/src/test/java/org/apache/commons/imaging/examples/tiff/ExampleReadFloatingPointData.java
@@ -65,7 +65,7 @@ public class ExampleReadFloatingPointData {
      * file
      * @throws org.apache.commons.imaging.ImageReadException in the event of an
      * internal data format or version compatibility error reading the image.
-     * @throws java.io.IOException in the event of an I/O error.
+     * @throws IOException in the event of an I/O error.
      */
     public static void main(final String[] args) throws ImageReadException, 
IOException {
         if (args.length == 0) {
diff --git 
a/src/test/java/org/apache/commons/imaging/examples/tiff/ReadAndRenderFloatingPoint.java
 
b/src/test/java/org/apache/commons/imaging/examples/tiff/ReadAndRenderFloatingPoint.java
index 294326a4..6f548acc 100644
--- 
a/src/test/java/org/apache/commons/imaging/examples/tiff/ReadAndRenderFloatingPoint.java
+++ 
b/src/test/java/org/apache/commons/imaging/examples/tiff/ReadAndRenderFloatingPoint.java
@@ -57,7 +57,7 @@ public class ReadAndRenderFloatingPoint {
      * file and an output JPEG.
      * @throws org.apache.commons.imaging.ImageReadException in the event of an
      * internal data format or version compatibility error reading the image.
-     * @throws java.io.IOException in the event of an I/O error.
+     * @throws IOException in the event of an I/O error.
      */
     public static void main(final String[] args) throws ImageReadException, 
IOException {
         if (args.length == 0) {
diff --git 
a/src/test/java/org/apache/commons/imaging/examples/tiff/ReadTagsAndImages.java 
b/src/test/java/org/apache/commons/imaging/examples/tiff/ReadTagsAndImages.java
index ec92e039..e53ca018 100644
--- 
a/src/test/java/org/apache/commons/imaging/examples/tiff/ReadTagsAndImages.java
+++ 
b/src/test/java/org/apache/commons/imaging/examples/tiff/ReadTagsAndImages.java
@@ -57,7 +57,7 @@ public class ReadTagsAndImages {
      * @param args the command line arguments
      * @throws org.apache.commons.imaging.ImageReadException in the event of an
      * internal data format or version compatibility error reading the image.
-     * @throws java.io.IOException in the event of an I/O error.
+     * @throws IOException in the event of an I/O error.
      */
     public static void main(final String[] args)
         throws ImageReadException, IOException {

Reply via email to