Author: tilman
Date: Sat Sep  5 17:29:55 2026
New Revision: 1937918

Log:
PDFBOX-5660: revert because of Sonar

Modified:
   
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/filter/FlateFilterDecoderStream.java

Modified: 
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/filter/FlateFilterDecoderStream.java
==============================================================================
--- 
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/filter/FlateFilterDecoderStream.java
    Sat Sep  5 16:41:01 2026        (r1937917)
+++ 
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/filter/FlateFilterDecoderStream.java
    Sat Sep  5 17:29:55 2026        (r1937918)
@@ -227,7 +227,7 @@ public final class FlateFilterDecoderStr
      * @param readlimit ignored.
      */
     @Override
-    public void mark(int readlimit)
+    public synchronized void mark(int readlimit)
     {
     }
 
@@ -237,7 +237,7 @@ public final class FlateFilterDecoderStr
      * @throws IOException always throw as reset is an unsupported feature.
      */
     @Override
-    public void reset() throws IOException
+    public synchronized void reset() throws IOException
     {
         throw new IOException("reset is not supported");
     }

Reply via email to