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-compress.git
commit a08a0d1f87da6d698dec19cab567cf60420da443 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Jan 17 07:36:06 2024 -0500 Javadoc --- src/test/java/org/apache/commons/compress/archivers/zip/Lister.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/test/java/org/apache/commons/compress/archivers/zip/Lister.java b/src/test/java/org/apache/commons/compress/archivers/zip/Lister.java index 27741bacd..795953460 100644 --- a/src/test/java/org/apache/commons/compress/archivers/zip/Lister.java +++ b/src/test/java/org/apache/commons/compress/archivers/zip/Lister.java @@ -28,16 +28,15 @@ import org.apache.commons.compress.archivers.ArchiveEntry; /** * Simple command line application that lists the contents of a ZIP archive. - * * <p> * The name of the archive must be given as a command line argument. * </p> - * * <p> * Optional command line arguments specify the encoding to assume and whether to use ZipFile or ZipArchiveInputStream. * </p> */ public final class Lister { + private static final class CommandLine { String archive; boolean useStream = false;