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 6c070bde2dbcc40b186eba64437194a031e2dca6 Author: Gary Gregory <[email protected]> AuthorDate: Sun Dec 21 18:02:33 2025 -0500 Javadoc --- src/main/java/org/apache/commons/compress/archivers/zip/ZipLong.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/ZipLong.java b/src/main/java/org/apache/commons/compress/archivers/zip/ZipLong.java index b8e0e7ced..01b43391a 100644 --- a/src/main/java/org/apache/commons/compress/archivers/zip/ZipLong.java +++ b/src/main/java/org/apache/commons/compress/archivers/zip/ZipLong.java @@ -119,6 +119,9 @@ public static void putLong(final long value, final byte[] buf, final int offset) ByteUtils.toLittleEndian(buf, value, offset, 4); } + /** + * The long value. + */ private final long value; /**
