Uploaded image for project: 'Code Tools'
  1. Code Tools
  2. CODETOOLS-7903561

com.sun.javatest.TestResult has code tuned for JDK1.1 which could be optimized

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Unresolved
    • Icon: P3 P3
    • jt6.0
    • jt6.0
    • tools
    • None

      com.sun.javatest.TestResult

      contains the following blocks

                              // JDK 1.1--start
                              String s = output.toString();
                              output = new StringBuffer(s.substring(0, overflowStart) + s.substring(output.length() - overflowEnd));
                              // JDK 1.1--end

                              // JDK 1.1--start
                              String s = output.toString();
                              output = new StringBuffer(s.substring(0, overflowStart) + OVERFLOW_MESSAGE + s.substring(overflowEnd));
                              // JDK 1.1--end


      JTHarness is JDK8 baselined, so this code could and should be optimized

            dbessono Dmitry Bessonov
            dbessono Dmitry Bessonov
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: