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 afa68deb Javadoc
afa68deb is described below
commit afa68debe3964bff43b70a681fe6b84213da5792
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Oct 30 10:05:10 2023 -0400
Javadoc
---
.../java/org/apache/commons/compress/archivers/ArchiveEntry.java | 6 ++++--
1 file changed, 4 insertions(+), 2 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 ee611e17..35bf1155 100644
--- a/src/main/java/org/apache/commons/compress/archivers/ArchiveEntry.java
+++ b/src/main/java/org/apache/commons/compress/archivers/ArchiveEntry.java
@@ -25,7 +25,9 @@ import java.util.Date;
*/
public interface ArchiveEntry {
- /** Special value indicating that the size is unknown */
+ /**
+ * Special value {@value} indicating that the size is unknown.
+ */
long SIZE_UNKNOWN = -1;
/**
@@ -53,7 +55,7 @@ public interface ArchiveEntry {
long getSize();
/**
- * Returns true if this entry refers to a directory.
+ * Tests whether this entry refers to a directory (true).
*
* @return true if this entry refers to a directory.
*/