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 994bf5cb Javadoc
994bf5cb is described below
commit 994bf5cb840b8547d105ec2a8c90226756955ee0
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Nov 4 11:37:55 2023 -0400
Javadoc
---
.../commons/compress/archivers/sevenz/SevenZArchiveEntry.java | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git
a/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZArchiveEntry.java
b/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZArchiveEntry.java
index bd1af7c1..6996b000 100644
---
a/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZArchiveEntry.java
+++
b/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZArchiveEntry.java
@@ -366,7 +366,8 @@ public class SevenZArchiveEntry implements ArchiveEntry {
}
/**
- * Whether there is any content associated with this entry.
+ * Tests whether there is any content associated with this entry.
+ *
* @return whether there is any content associated with this entry.
*/
public boolean hasStream() {
@@ -374,8 +375,9 @@ public class SevenZArchiveEntry implements ArchiveEntry {
}
/**
- * Indicates whether this is an "anti-item" used in differential backups,
+ * Tests whether this is an "anti-item" used in differential backups,
* meaning it should delete the same file from a previous backup.
+ *
* @return true if it is an anti-item, false otherwise
*/
public boolean isAntiItem() {
@@ -383,7 +385,7 @@ public class SevenZArchiveEntry implements ArchiveEntry {
}
/**
- * Return whether or not this entry represents a directory.
+ * Tests whether or not this entry represents a directory.
*
* @return True if this entry is a directory.
*/