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 dfb21f31 Remove unused imports dfb21f31 is described below commit dfb21f316e57fd9493f386891165b245e492cf53 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Dec 10 11:22:14 2023 -0500 Remove unused imports --- .../org/apache/commons/imaging/formats/jpeg/segments/ComSegment.java | 1 - .../apache/commons/imaging/formats/jpeg/segments/GenericSegment.java | 1 - .../apache/commons/imaging/formats/tiff/TiffReadImageInfoTest.java | 4 +++- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/imaging/formats/jpeg/segments/ComSegment.java b/src/main/java/org/apache/commons/imaging/formats/jpeg/segments/ComSegment.java index 2b311e90..e12ef11f 100644 --- a/src/main/java/org/apache/commons/imaging/formats/jpeg/segments/ComSegment.java +++ b/src/main/java/org/apache/commons/imaging/formats/jpeg/segments/ComSegment.java @@ -18,7 +18,6 @@ package org.apache.commons.imaging.formats.jpeg.segments; import java.io.IOException; import java.io.InputStream; -import java.io.UnsupportedEncodingException; import java.nio.charset.StandardCharsets; public class ComSegment extends GenericSegment { diff --git a/src/main/java/org/apache/commons/imaging/formats/jpeg/segments/GenericSegment.java b/src/main/java/org/apache/commons/imaging/formats/jpeg/segments/GenericSegment.java index bb4ceeae..a71c08c5 100644 --- a/src/main/java/org/apache/commons/imaging/formats/jpeg/segments/GenericSegment.java +++ b/src/main/java/org/apache/commons/imaging/formats/jpeg/segments/GenericSegment.java @@ -21,7 +21,6 @@ import static org.apache.commons.imaging.common.BinaryFunctions.readBytes; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; -import java.io.UnsupportedEncodingException; import java.nio.charset.Charset; public abstract class GenericSegment extends AbstractSegment { diff --git a/src/test/java/org/apache/commons/imaging/formats/tiff/TiffReadImageInfoTest.java b/src/test/java/org/apache/commons/imaging/formats/tiff/TiffReadImageInfoTest.java index 76e01c8e..aea727dd 100644 --- a/src/test/java/org/apache/commons/imaging/formats/tiff/TiffReadImageInfoTest.java +++ b/src/test/java/org/apache/commons/imaging/formats/tiff/TiffReadImageInfoTest.java @@ -16,11 +16,13 @@ */ package org.apache.commons.imaging.formats.tiff; +import static org.junit.jupiter.api.Assertions.assertEquals; + import java.io.File; + import org.apache.commons.imaging.ImageInfo; import org.apache.commons.imaging.Imaging; import org.apache.commons.imaging.ImagingTestConstants; -import static org.junit.jupiter.api.Assertions.assertEquals; import org.junit.jupiter.api.Test; /**