8209454: [error-prone] TypeParameterUnusedInFormals in jdk.net

Reviewed-by: dfuchs
This commit is contained in:
Chris Hegarty 2018-10-02 10:40:58 +01:00
parent 0cb267ad1c
commit f1436a3b4d

@ -206,7 +206,7 @@ public final class ExtendedSocketOptions {
if (option == SO_FLOW_SLA) {
assert flowSupported;
SocketFlow flow = checkValueType(value, option.type());
SocketFlow flow = checkValueType(value, SocketFlow.class);
setFlowOption(fd, flow);
} else if (option == TCP_QUICKACK) {
setQuickAckOption(fd, (boolean) value);
@ -254,7 +254,7 @@ public final class ExtendedSocketOptions {
}
@SuppressWarnings("unchecked")
private static <T> T checkValueType(Object value, Class<?> type) {
private static <T> T checkValueType(Object value, Class<T> type) {
if (!type.isAssignableFrom(value.getClass())) {
String s = "Found: " + value.getClass() + ", Expected: " + type;
throw new IllegalArgumentException(s);