This is an automated email from the ASF dual-hosted git repository.
asf-gitbox-commits pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pdfbox-jbig2.git
The following commit(s) were added to refs/heads/master by this push:
new aa420a7 PDFBOX-5660: Sonar fix
aa420a7 is described below
commit aa420a7fd00b6a36c9411b00b7e182fa3ca057f9
Author: Tilman Hausherr <[email protected]>
AuthorDate: Thu May 14 11:09:37 2026 +0200
PDFBOX-5660: Sonar fix
---
.../java/org/apache/pdfbox/jbig2/decoder/huffman/StandardTables.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/main/java/org/apache/pdfbox/jbig2/decoder/huffman/StandardTables.java
b/src/main/java/org/apache/pdfbox/jbig2/decoder/huffman/StandardTables.java
index 0224d54..5a2c5fd 100644
--- a/src/main/java/org/apache/pdfbox/jbig2/decoder/huffman/StandardTables.java
+++ b/src/main/java/org/apache/pdfbox/jbig2/decoder/huffman/StandardTables.java
@@ -24,7 +24,7 @@ public class StandardTables
{
static class StandardTable extends HuffmanTable
{
- private StandardTable(int table[][])
+ private StandardTable(int[][] table)
{
List<Code> codeTable = new ArrayList<Code>();