Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8259385

Cleanup unused assignment

    XMLWordPrintable

Details

    Description

      In the SunJSSE provider implementation, there are a few cases that the assigned value is never used. For example:
        int i = 0;
        i = Byte.toUnsignedInt(buf.get());

      could be simplified as
          int i = Byte.toUnsignedInt(buf.get());

      Attachments

        Issue Links

          Activity

            People

              xuelei Xuelei Fan
              xuelei Xuelei Fan
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: