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


The following commit(s) were added to refs/heads/master by this push:
     new 2935058dc Javadoc
2935058dc is described below

commit 2935058dccc6e0fd8b8da0aa511b93a1ceb1e7fe
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Jan 17 08:47:26 2024 -0500

    Javadoc
---
 .../java/org/apache/commons/compress/archivers/ArchiveEntry.java     | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/compress/archivers/ArchiveEntry.java 
b/src/main/java/org/apache/commons/compress/archivers/ArchiveEntry.java
index d329868c2..9fe434f99 100644
--- a/src/main/java/org/apache/commons/compress/archivers/ArchiveEntry.java
+++ b/src/main/java/org/apache/commons/compress/archivers/ArchiveEntry.java
@@ -23,12 +23,12 @@ import java.nio.file.Path;
 import java.util.Date;
 
 /**
- * Represents an entry of an archive.
+ * An entry of an archive.
  */
 public interface ArchiveEntry {
 
     /**
-     * Special value {@value} indicating that the size is unknown.
+     * Special value ({@value}) indicating that the size is unknown.
      */
     long SIZE_UNKNOWN = -1;
 
@@ -42,7 +42,6 @@ public interface ArchiveEntry {
 
     /**
      * Gets the name of the entry in this archive. May refer to a file or 
directory or other item.
-     *
      * <p>
      * This method returns the raw name as it is stored inside of the archive.
      * </p>

Reply via email to