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 cdc39c96 Javadoc
cdc39c96 is described below
commit cdc39c96026df0c72de6b0a19e6312895054c440
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Nov 4 12:35:54 2023 -0400
Javadoc
---
.../apache/commons/compress/archivers/sevenz/SevenZFile.java | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git
a/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java
b/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java
index 2cf5c521..ed69bb4e 100644
--- a/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java
+++ b/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java
@@ -770,7 +770,7 @@ public class SevenZFile implements Closeable {
}
/**
- * Derives a default file name from the archive name - if known.
+ * Gets a default file name from the archive name - if known.
*
* <p>This implements the same heuristics the 7z tools use. In
* 7z's case if an archive contains entries without a name -
@@ -800,7 +800,7 @@ public class SevenZFile implements Closeable {
}
/**
- * Returns a copy of meta-data of all archive entries.
+ * Gets a copy of meta-data of all archive entries.
*
* <p>This method only provides meta-data, the entries can not be
* used to read the contents, you still need to process all
@@ -817,7 +817,7 @@ public class SevenZFile implements Closeable {
}
/**
- * Returns an InputStream for reading the contents of the given entry.
+ * Gets an InputStream for reading the contents of the given entry.
*
* <p>For archives using solid compression randomly accessing
* entries will be significantly slower than reading the archive
@@ -848,7 +848,7 @@ public class SevenZFile implements Closeable {
}
/**
- * Returns the next Archive Entry in this archive.
+ * Gets the next Archive Entry in this archive.
*
* @return the next entry,
* or {@code null} if there are no more entries
@@ -869,7 +869,7 @@ public class SevenZFile implements Closeable {
}
/**
- * Provides statistics for bytes read from the current entry.
+ * Gets statistics for bytes read from the current entry.
*
* @return statistics for bytes read from the current entry
* @since 1.17
@@ -888,7 +888,7 @@ public class SevenZFile implements Closeable {
}
/**
- * Find out if any data of current entry has been read or not.
+ * Tests if any data of current entry has been read or not.
* This is achieved by comparing the bytes remaining to read
* and the size of the file.
*