Author: tilman
Date: Sat Sep 5 04:18:47 2026
New Revision: 1937894
Log:
PDFBOX-5660: refactor, as suggested by Valery Bokov; closes #519
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 04:18:43 2026 (r1937893)
+++
pdfbox/branches/3.0/pdfbox/src/main/java/org/apache/pdfbox/filter/FlateFilterDecoderStream.java
Sat Sep 5 04:18:47 2026 (r1937894)
@@ -227,7 +227,7 @@ public final class FlateFilterDecoderStr
* @param readlimit ignored.
*/
@Override
- public synchronized void mark(int readlimit)
+ public void mark(int readlimit)
{
}
@@ -237,7 +237,7 @@ public final class FlateFilterDecoderStr
* @throws IOException always throw as reset is an unsupported feature.
*/
@Override
- public synchronized void reset() throws IOException
+ public void reset() throws IOException
{
throw new IOException("reset is not supported");
}