This is an automated email from the ASF dual-hosted git repository. garydgregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-compress.git
commit ca82c770684929ea720f599c974e45e6ad337f31 Author: Gary Gregory <[email protected]> AuthorDate: Sun Aug 9 07:48:36 2026 -0400 Use final --- .../java/org/apache/commons/compress/huffman/HuffmanDecoderTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/compress/huffman/HuffmanDecoderTest.java b/src/test/java/org/apache/commons/compress/huffman/HuffmanDecoderTest.java index 6cc56a816..dbb697ce4 100644 --- a/src/test/java/org/apache/commons/compress/huffman/HuffmanDecoderTest.java +++ b/src/test/java/org/apache/commons/compress/huffman/HuffmanDecoderTest.java @@ -106,7 +106,7 @@ static Stream<Arguments> testDecodeSymbols() { // @formatter:on } - private int decodeSymbol(HuffmanDecoder decoder, final byte... data) throws IOException { + private int decodeSymbol(final HuffmanDecoder decoder, final byte... data) throws IOException { try (BitInputStream in = new BitInputStream(new ByteArrayInputStream(data), ByteOrder.BIG_ENDIAN)) { return decoder.decodeSymbol(in); }
