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 5c5bbe3  PDFBOX-5660: remove public from method that has a package 
local parameter type
5c5bbe3 is described below

commit 5c5bbe31b670777e02f800e0e2649a5c825c575d
Author: Tilman Hausherr <[email protected]>
AuthorDate: Thu May 14 13:29:59 2026 +0200

    PDFBOX-5660: remove public from method that has a package local parameter 
type
---
 src/main/java/org/apache/pdfbox/jbig2/SegmentHeader.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/pdfbox/jbig2/SegmentHeader.java 
b/src/main/java/org/apache/pdfbox/jbig2/SegmentHeader.java
index 77b045f..ee22b8b 100644
--- a/src/main/java/org/apache/pdfbox/jbig2/SegmentHeader.java
+++ b/src/main/java/org/apache/pdfbox/jbig2/SegmentHeader.java
@@ -75,8 +75,8 @@ public class SegmentHeader
 
     private Reference<SegmentData> segmentData;
 
-    public SegmentHeader(JBIG2Document document, SubInputStream sis, long 
offset,
-            int organisationType) throws IOException
+    SegmentHeader(JBIG2Document document, SubInputStream sis, long offset, int 
organisationType)
+            throws IOException
     {
         this.subInputStream = sis;
         parse(document, sis, offset, organisationType);

Reply via email to