-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P4
-
Affects Version/s: 19
-
Component/s: core-libs
-
b23
java.util.zip.InflaterInputStream has:
public synchronized void mark(int readlimit) {
}
and
public synchronized void reset() throws IOException {
throw new IOException("mark/reset not supported");
}
In both these cases the "synchronized" can be removed.
public synchronized void mark(int readlimit) {
}
and
public synchronized void reset() throws IOException {
throw new IOException("mark/reset not supported");
}
In both these cases the "synchronized" can be removed.
- csr for
-
JDK-8286579 Re-examine synchronization of mark and reset methods on InflaterInputStream
-
- Closed
-
- relates to
-
JDK-8286604 Update InputStream and OutputStream to use @implSpec
-
- Resolved
-
-
JDK-8284930 Re-examine FilterInputStream mark/reset
-
- Resolved
-