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

Document/revise usage of operator == for comparison of Swing properties

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P4 P4
    • 7
    • 5.0
    • client-libs

      FULL PRODUCT VERSION :
      java version "1.5.0_06"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-b05)
      Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed mode)

      ADDITIONAL OS VERSION INFORMATION :
      Microsoft Windows XP [Version 5.1.2600]

      A DESCRIPTION OF THE PROBLEM :
      javax.swing.JScrollPane lines 1477 and 1488 read:

      if (propertyName == "horizontalScrollBar" ||
      propertyName == "verticalScrollBar") {

      This represents an incorrect application of the == operator; the expression will always evaluate to false. Please replace it with:

      if ((propertyName != null) && (propertyName.equals("horizontalScrollBar") ||
      propertyName.equals("verticalScrollBar"))) {

      How does Sun Microsystems justify the employment of engineers who fail to understand the basic usage of Java language operators? The Java development community would greatly appreciate more stringent enforcement of basic software design and development skills amongst the Swing team members. Their elementary errors have cost us all a vast amount of both time and money.


      REPRODUCIBILITY :
      This bug can be reproduced always.

            shickeysunw Shannon Hickey (Inactive)
            igor Igor Nekrestyanov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: