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 8a623fd87a29824e68acf42c9951ff8aade87f04 Author: Tilman Hausherr <[email protected]> AuthorDate: Wed May 13 13:58:33 2026 +0200 PDFBOX-5660: remove public from package local class --- src/main/java/org/apache/pdfbox/jbig2/image/Resizer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/pdfbox/jbig2/image/Resizer.java b/src/main/java/org/apache/pdfbox/jbig2/image/Resizer.java index 157957f..4a7bf2c 100644 --- a/src/main/java/org/apache/pdfbox/jbig2/image/Resizer.java +++ b/src/main/java/org/apache/pdfbox/jbig2/image/Resizer.java @@ -131,7 +131,7 @@ class Resizer * * @param scale the scale factor for x and y direction */ - public Resizer(double scale) + Resizer(double scale) { this(scale, scale); } @@ -142,7 +142,7 @@ class Resizer * @param scaleX the scale factor for x direction * @param scaleY the scale factor for y direction */ - public Resizer(double scaleX, double scaleY) + Resizer(double scaleX, double scaleY) { mappingX = new Mapping(scaleX); mappingY = new Mapping(scaleY);
