You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2024/01/17 13:32:51 UTC

(commons-compress) 01/03: Javadoc

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 <ga...@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;