8252831: Correct "no comment" warnings in jdk.net module

Reviewed-by: chegar, vtewari, dfuchs
This commit is contained in:
Patrick Concannon 2021-03-08 12:19:01 +00:00
parent 51cca57c22
commit ab2cfccac7

View File

@ -78,6 +78,7 @@ public class Sockets {
* @param name The socket option
* @param value The value of the socket option. May be null for some
* options.
* @param <T> The type of the socket option
*
* @throws UnsupportedOperationException if the socket does not support
* the option.
@ -107,6 +108,7 @@ public class Sockets {
*
* @param s the socket
* @param name The socket option
* @param <T> The type of the socket option
*
* @return The value of the socket option.
*
@ -135,7 +137,8 @@ public class Sockets {
*
* @param s the socket
* @param name The socket option
* @param value The value of the socket option.
* @param value The value of the socket option
* @param <T> The type of the socket option
*
* @throws UnsupportedOperationException if the socket does not support
* the option.
@ -165,6 +168,7 @@ public class Sockets {
*
* @param s the socket
* @param name The socket option
* @param <T> The type of the socket option
*
* @return The value of the socket option.
*
@ -194,7 +198,8 @@ public class Sockets {
*
* @param s the socket
* @param name The socket option
* @param value The value of the socket option.
* @param value The value of the socket option
* @param <T> The type of the socket option
*
* @throws UnsupportedOperationException if the socket does not support
* the option.
@ -225,6 +230,7 @@ public class Sockets {
*
* @param s the socket
* @param name The socket option
* @param <T> The type of the socket option
*
* @return The value of the socket option.
*
@ -255,6 +261,8 @@ public class Sockets {
*
* @param socketType the type of java.net socket
*
* @return A set of socket options
*
* @throws IllegalArgumentException if socketType is not a valid
* socket type from the java.net package.
*