mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8314738: Remove all occurrences of and support for @revised
Reviewed-by: mr
This commit is contained in:
parent
6b9df037e4
commit
f39fc0aa2d
28 changed files with 8 additions and 124 deletions
|
@ -125,7 +125,6 @@ public class ServerSocket implements java.io.Closeable {
|
|||
* Creates an unbound server socket.
|
||||
*
|
||||
* @throws IOException IO error when opening the socket.
|
||||
* @revised 1.4
|
||||
*/
|
||||
public ServerSocket() throws IOException {
|
||||
this.impl = createImpl();
|
||||
|
@ -532,7 +531,6 @@ public class ServerSocket implements java.io.Closeable {
|
|||
*
|
||||
* @return the new Socket
|
||||
* @see SecurityManager#checkAccept
|
||||
* @revised 1.4
|
||||
*/
|
||||
public Socket accept() throws IOException {
|
||||
if (isClosed())
|
||||
|
@ -575,7 +573,6 @@ public class ServerSocket implements java.io.Closeable {
|
|||
* to accept a connection with the given socket
|
||||
*
|
||||
* @since 1.1
|
||||
* @revised 1.4
|
||||
*/
|
||||
protected final void implAccept(Socket s) throws IOException {
|
||||
SocketImpl si = s.impl();
|
||||
|
@ -741,7 +738,6 @@ public class ServerSocket implements java.io.Closeable {
|
|||
* as well.
|
||||
*
|
||||
* @throws IOException if an I/O error occurs when closing the socket.
|
||||
* @revised 1.4
|
||||
*/
|
||||
public void close() throws IOException {
|
||||
synchronized (socketLock) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue