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 88927a237 Javadoc 88927a237 is described below commit 88927a2371fd6ab89d89ee2c41085b7e43a84500 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Nov 26 10:10:39 2024 -0500 Javadoc --- .../apache/commons/compress/archivers/zip/ZipEightByteInteger.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/ZipEightByteInteger.java b/src/main/java/org/apache/commons/compress/archivers/zip/ZipEightByteInteger.java index 61680accb..08365da50 100644 --- a/src/main/java/org/apache/commons/compress/archivers/zip/ZipEightByteInteger.java +++ b/src/main/java/org/apache/commons/compress/archivers/zip/ZipEightByteInteger.java @@ -29,8 +29,12 @@ import java.nio.ByteOrder; * @since 1.2 */ public final class ZipEightByteInteger implements Serializable { + private static final long serialVersionUID = 1L; + /** + * Constant for a value of zero. + */ public static final ZipEightByteInteger ZERO = new ZipEightByteInteger(0); private static final BigInteger HIGHEST_BIT = BigInteger.ONE.shiftLeft(63);