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 aec92603e97e6065b24db34bfc852f956cf3368a Author: Gary Gregory <[email protected]> AuthorDate: Sun Dec 21 18:02:38 2025 -0500 Javadoc --- src/main/java/org/apache/commons/compress/archivers/zip/ZipShort.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/ZipShort.java b/src/main/java/org/apache/commons/compress/archivers/zip/ZipShort.java index f6b371f92..b51c9b86b 100644 --- a/src/main/java/org/apache/commons/compress/archivers/zip/ZipShort.java +++ b/src/main/java/org/apache/commons/compress/archivers/zip/ZipShort.java @@ -89,6 +89,9 @@ public static void putShort(final int value, final byte[] buf, final int offset) ByteUtils.toLittleEndian(buf, value, offset, SIZE); } + /** + * The short value. + */ private final int value; /**
