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 4cdc25209 Javadoc
4cdc25209 is described below
commit 4cdc25209b9235c3d7cbc12c13e86084749457cc
Author: Gary D. Gregory <[email protected]>
AuthorDate: Sun May 4 08:44:01 2025 -0400
Javadoc
---
.../commons/compress/archivers/zip/ZipArchiveEntry.java | 8 ++++----
.../compress/harmony/archive/internal/nls/Messages.java | 12 ++++++------
2 files changed, 10 insertions(+), 10 deletions(-)
diff --git
a/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveEntry.java
b/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveEntry.java
index 190c95bbb..863d56a96 100644
---
a/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveEntry.java
+++
b/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveEntry.java
@@ -649,7 +649,7 @@ private ZipExtraField[] getAllExtraFieldsNoCopy() {
}
/**
- * Retrieves the extra data for the central directory.
+ * Gets the extra data for the central directory.
*
* @return the central directory extra data
*/
@@ -658,7 +658,7 @@ public byte[] getCentralDirectoryExtra() {
}
/**
- * The source of the comment field value.
+ * * Gets the source of the comment field value.
*
* @return source of the comment field value
* @since 1.16
@@ -673,7 +673,7 @@ public long getDataOffset() {
}
/**
- * The number of the split segment this entry starts at.
+ * Gets the number of the split segment this entry starts at.
*
* @return the number of the split segment this entry starts at.
* @since 1.20
@@ -683,7 +683,7 @@ public long getDiskNumberStart() {
}
/**
- * Retrieves the external file attributes.
+ * Gets the external file attributes.
*
* <p>
* <strong>Note</strong>: {@link ZipArchiveInputStream} is unable to fill
this field, you must use {@link ZipFile} if you want to read entries using this
diff --git
a/src/main/java/org/apache/commons/compress/harmony/archive/internal/nls/Messages.java
b/src/main/java/org/apache/commons/compress/harmony/archive/internal/nls/Messages.java
index 27be685e0..de1cfa5fa 100644
---
a/src/main/java/org/apache/commons/compress/harmony/archive/internal/nls/Messages.java
+++
b/src/main/java/org/apache/commons/compress/harmony/archive/internal/nls/Messages.java
@@ -110,7 +110,7 @@ public static String format(final String format, final
Object[] args) {
}
/**
- * Retrieves a message which has no arguments.
+ * Gets a message which has no arguments.
*
* @param msg String the key to look up.
* @return String the message for that key in the system message bundle.
@@ -127,7 +127,7 @@ public static String getString(final String msg) {
}
/**
- * Retrieves a message which takes 1 character argument.
+ * Gets a message which takes 1 character argument.
*
* @param msg String the key to look up.
* @param arg char the character to insert in the formatted output.
@@ -138,7 +138,7 @@ public static String getString(final String msg, final char
arg) {
}
/**
- * Retrieves a message which takes 1 integer argument.
+ * Gets a message which takes 1 integer argument.
*
* @param msg String the key to look up.
* @param arg int the integer to insert in the formatted output.
@@ -149,7 +149,7 @@ public static String getString(final String msg, final int
arg) {
}
/**
- * Retrieves a message which takes 1 argument.
+ * Gets a message which takes 1 argument.
*
* @param msg String the key to look up.
* @param arg Object the object to insert in the formatted output.
@@ -160,7 +160,7 @@ public static String getString(final String msg, final
Object arg) {
}
/**
- * Retrieves a message which takes 2 arguments.
+ * Gets a message which takes 2 arguments.
*
* @param msg String the key to look up.
* @param arg1 Object an object to insert in the formatted output.
@@ -172,7 +172,7 @@ public static String getString(final String msg, final
Object arg1, final Object
}
/**
- * Retrieves a message which takes several arguments.
+ * Gets a message which takes several arguments.
*
* @param msg String the key to look up.
* @param args Object[] the objects to insert in the formatted output.