-
CSR
-
Resolution: Approved
-
P4
-
None
-
binary, behavioral
-
minimal
-
-
Java API
-
SE
Summary
The method java.io.ObjectOutputStream.PutField.write(oos)
is deprecated for removal.
Problem
This obsolete method has been deprecated since 1.4 and should be removed.
Solution
Add "forRemoval = true" to the existing \@deprecated annotation.
Specification
In the java.io.ObjectOutputStream.PutField.write(ObjectOutput out)
method add "forRemoval = true" to the deprecated annotation.
@Deprecated(forRemoval = true, since = "1.4")
public abstract void write(ObjectOutput out) throws IOException;
- csr of
-
JDK-8329805 Deprecate for removal ObjectOutputStream.PutField.write
- Closed