8314738: Remove all occurrences of and support for @revised

Reviewed-by: mr
This commit is contained in:
Pavel Rappo 2023-08-22 13:02:53 +00:00
parent 6b9df037e4
commit f39fc0aa2d
28 changed files with 8 additions and 124 deletions

View file

@ -176,7 +176,6 @@ public class Socket implements java.io.Closeable {
* socket implementation is created.
*
* @since 1.1
* @revised 1.4
*/
public Socket() {
this.impl = createImpl();
@ -1051,8 +1050,6 @@ public class Socket implements java.io.Closeable {
* input stream, the socket is closed, the socket is
* not connected, or the socket input has been shutdown
* using {@link #shutdownInput()}
*
* @revised 1.4
*/
public InputStream getInputStream() throws IOException {
int s = state;
@ -1149,7 +1146,6 @@ public class Socket implements java.io.Closeable {
* @return an output stream for writing bytes to this socket.
* @throws IOException if an I/O error occurs when creating the
* output stream or if the socket is not connected.
* @revised 1.4
*/
public OutputStream getOutputStream() throws IOException {
int s = state;
@ -1717,7 +1713,6 @@ public class Socket implements java.io.Closeable {
* as well.
*
* @throws IOException if an I/O error occurs when closing this socket.
* @revised 1.4
* @see #isClosed
*/
public void close() throws IOException {