This is an automated email from the ASF dual-hosted git repository. ebourg pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-compress.git
The following commit(s) were added to refs/heads/master by this push: new 3f99ec3b5 Removed an unused import in the Archive class 3f99ec3b5 is described below commit 3f99ec3b50bb767ef725a9eb06fa42800e5c3354 Author: Emmanuel Bourg <ebo...@apache.org> AuthorDate: Thu Oct 24 23:59:35 2024 +0200 Removed an unused import in the Archive class --- src/main/java/org/apache/commons/compress/harmony/unpack200/Archive.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/org/apache/commons/compress/harmony/unpack200/Archive.java b/src/main/java/org/apache/commons/compress/harmony/unpack200/Archive.java index 2a3fc38d3..56bcca212 100644 --- a/src/main/java/org/apache/commons/compress/harmony/unpack200/Archive.java +++ b/src/main/java/org/apache/commons/compress/harmony/unpack200/Archive.java @@ -23,7 +23,6 @@ import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; -import java.io.OutputStream; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths;