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 3178565e Format tweaks 3178565e is described below commit 3178565ee93ab1e044bab78db63e9c7d761416d8 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Mar 17 16:24:11 2023 -0400 Format tweaks --- .../java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java b/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java index 861f4a9f..44e5d240 100644 --- a/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java +++ b/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java @@ -165,10 +165,12 @@ public class SevenZFile implements Closeable { static final int SIGNATURE_HEADER_SIZE = 32; private static final String DEFAULT_FILE_NAME = "unknown archive"; + /** Shared with SevenZOutputFile and tests, neither mutates it. */ static final byte[] sevenZSignature = { //NOSONAR - (byte)'7', (byte)'z', (byte)0xBC, (byte)0xAF, (byte)0x27, (byte)0x1C + (byte) '7', (byte) 'z', (byte) 0xBC, (byte) 0xAF, (byte) 0x27, (byte) 0x1C }; + private static int assertFitsIntoNonNegativeInt(final String what, final long value) throws IOException { if (value > Integer.MAX_VALUE || value < 0) { throw new IOException(String.format("Cannot handle % %,d", what, value));