Redundant Math.min call in Http2ClientImpl#getConnectionWindowSize

XMLWordPrintable

    • Type: Bug
    • Resolution: Fixed
    • Priority: P4
    • 18
    • Affects Version/s: None
    • Component/s: core-libs
    • b13

      There is a redundant call to Math.min in 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)

            Assignee:
            Michael McMahon
            Reporter:
            Michael McMahon
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved: