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 df7d417669001bc50d29a833d122a77b1c054f06 Author: Gary Gregory <[email protected]> AuthorDate: Sun Jan 4 12:26:59 2026 -0500 Javadoc --- .../org/apache/commons/compress/archivers/zip/X7875_NewUnix.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/X7875_NewUnix.java b/src/main/java/org/apache/commons/compress/archivers/zip/X7875_NewUnix.java index 90a995798..1c8f457bf 100644 --- a/src/main/java/org/apache/commons/compress/archivers/zip/X7875_NewUnix.java +++ b/src/main/java/org/apache/commons/compress/archivers/zip/X7875_NewUnix.java @@ -119,13 +119,12 @@ static byte[] trimLeadingZeroesForceMinLength(final byte[] array) { private int version = 1; - // BigInteger helps us with little-endian / big-endian conversions. - // (thanks to BigInteger.toByteArray() and a reverse() method we created). - // Also, the spec theoretically allows UID/GID up to 255 bytes long! - // - // NOTE: equals() and hashCode() currently assume these can never be null. /** * The user ID. + * <p> + * BigInteger helps us with little-endian / big-endian conversions. (thanks to BigInteger.toByteArray() and a reverse() method we created). Also, the spec + * theoretically allows UID/GID up to 255 bytes long! NOTE: equals() and hashCode() currently assume these can never be null. + * </p> */ private BigInteger uid;
