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
commit db6be9430a1e5fd566d4f85830b9cd2b3ee9acd1 Author: Tilman Hausherr <[email protected]> AuthorDate: Wed May 13 13:56:56 2026 +0200 PDFBOX-5660: remove public from package local class --- src/main/java/org/apache/pdfbox/jbig2/image/Weighttab.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/pdfbox/jbig2/image/Weighttab.java b/src/main/java/org/apache/pdfbox/jbig2/image/Weighttab.java index fb1a6f9..758ae38 100644 --- a/src/main/java/org/apache/pdfbox/jbig2/image/Weighttab.java +++ b/src/main/java/org/apache/pdfbox/jbig2/image/Weighttab.java @@ -32,7 +32,7 @@ final class Weighttab * cen, for source coordinates in the range [0..len-1], writing the weights into wtab. Scale the weights so they sum * to WEIGHTONE, and trim leading and trailing zeros if trimzeros!=0. b is the dest coordinate (for diagnostics). */ - public Weighttab(ParameterizedFilter pf, int weightOne, final double center, int a0, + Weighttab(ParameterizedFilter pf, int weightOne, final double center, int a0, final int a1, final boolean trimzeros) { // find the source coord range of this positioned filter: [i0..i1-1] and clamp to input range
