Redundant Math.min call in Http2ClientImpl#getConnectionWindowSize
Andrey Turbanov
turbanoff at gmail.com
Thu Aug 19 18:50:35 UTC 2021
Hello.
During investigation of results of IDEA inspections I found a
redundant call to Math.min in a method
jdk.internal.net.http.Http2ClientImpl#getConnectionWindowSize
https://github.com/openjdk/jdk/blob/master/src/java.net.http/share/classes/jdk/internal/net/http/Http2ClientImpl.java#L240
int defaultValue = Math.min(Integer.MAX_VALUE,
Math.max(streamWindow, K*K*32));
Call of method Math.min(int, int) is redundant if one of parameters is
known to be Integer.MAX_VALUE (or Integer.MIN_VALUE)
Andrey Turbanov
More information about the net-dev
mailing list