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 d883e21c0194f19021e46eeaa92040c07f532638 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Mon Aug 4 13:52:30 2025 -0400 Javadoc --- .../java/org/apache/commons/compress/archivers/ArchiveException.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/ArchiveException.java b/src/main/java/org/apache/commons/compress/archivers/ArchiveException.java index fad5fac36..d3a37ba5f 100644 --- a/src/main/java/org/apache/commons/compress/archivers/ArchiveException.java +++ b/src/main/java/org/apache/commons/compress/archivers/ArchiveException.java @@ -36,7 +36,7 @@ public class ArchiveException extends CompressException { * @param x the first value. * @param y the second value. * @return the result. - * @throws ArchiveException if the result overflows a long. + * @throws ArchiveException if the result overflows an {@code int}. * @see Math#addExact(int, int) * @since 1.29.0 */ @@ -54,7 +54,7 @@ public static int addExact(final int x, final int y) throws ArchiveException { * @param x the first value. * @param y the second value. * @return the result. - * @throws ArchiveException if the result overflows a long. + * @throws ArchiveException if the result overflows a {@code long}. * @see Math#addExact(long, long) * @since 1.29.0 */