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
commit 69b34ddfd55daa4cbd82be0dad8679e9ed932120 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Wed Aug 27 16:09:41 2025 -0400 Javadoc --- .../apache/commons/compress/MemoryLimitException.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/MemoryLimitException.java b/src/main/java/org/apache/commons/compress/MemoryLimitException.java index 727be8cfb..dd5a2b504 100644 --- a/src/main/java/org/apache/commons/compress/MemoryLimitException.java +++ b/src/main/java/org/apache/commons/compress/MemoryLimitException.java @@ -53,9 +53,9 @@ private static void check(final long request, final long max, final String scale /** * Throws a MemoryLimitException if the request is greater than the max. * - * @param request The request. - * @param max The max. - * @return The request. + * @param request The request in bytes. + * @param max The max in bytes. + * @return The request in bytes. * @throws MemoryLimitException Thrown if the request is greater than the max. * @since 1.29.0 */ @@ -67,9 +67,9 @@ public static int checkBytes(final int request, final long max) throws MemoryLim /** * Throws a MemoryLimitException if the request is greater than the max. * - * @param request The request. - * @param max The max. - * @return The request. + * @param request The request in bytes. + * @param max The max in bytes. + * @return The request in bytes. * @throws MemoryLimitException Thrown if the request is greater than the max. * @since 1.29.0 */ @@ -81,9 +81,9 @@ public static long checkBytes(final long request, final long max) throws MemoryL /** * Throws a MemoryLimitException if the request is greater than the max. * - * @param request The request. - * @param max The max. - * @return The request. + * @param request The request in KiB. + * @param max The max in KiB. + * @return The request in KiB. * @throws MemoryLimitException Thrown if the request is greater than the max. * @since 1.29.0 */