Author: tilman
Date: Sat Sep 5 17:30:06 2026
New Revision: 1937919
Log:
PDFBOX-5660: revert because of Sonar
Modified:
pdfbox/branches/3.0/pdfbox/src/main/java/org/apache/pdfbox/filter/FlateFilterDecoderStream.java
Modified:
pdfbox/branches/3.0/pdfbox/src/main/java/org/apache/pdfbox/filter/FlateFilterDecoderStream.java
==============================================================================
---
pdfbox/branches/3.0/pdfbox/src/main/java/org/apache/pdfbox/filter/FlateFilterDecoderStream.java
Sat Sep 5 17:29:55 2026 (r1937918)
+++
pdfbox/branches/3.0/pdfbox/src/main/java/org/apache/pdfbox/filter/FlateFilterDecoderStream.java
Sat Sep 5 17:30:06 2026 (r1937919)
@@ -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");
}