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 90e8a4661 Javadoc: Upper case acronym
90e8a4661 is described below
commit 90e8a4661b05d559b1a2e3c4240e8c08c4a3c5ad
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Dec 10 09:31:02 2024 -0500
Javadoc: Upper case acronym
---
.../commons/compress/archivers/sevenz/SevenZArchiveEntry.java | 8 ++++----
1 file changed, 4 insertions(+), 4 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 9dce92875..93544cb73 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
@@ -252,13 +252,13 @@ public class SevenZArchiveEntry implements ArchiveEntry {
}
/**
- * Gets whether this entry has got a crc.
+ * Gets whether this entry has got a CRC.
*
* <p>
* In general entries without streams don't have a CRC either.
* </p>
*
- * @return whether this entry has got a crc.
+ * @return whether this entry has got a CRC.
*/
public boolean getHasCrc() {
return hasCrc;
@@ -571,9 +571,9 @@ public class SevenZArchiveEntry implements ArchiveEntry {
}
/**
- * Sets whether this entry has got a crc.
+ * Sets whether this entry has got a CRC.
*
- * @param hasCrc whether this entry has got a crc.
+ * @param hasCrc whether this entry has got a CRC.
*/
public void setHasCrc(final boolean hasCrc) {
this.hasCrc = hasCrc;