jdk/src/share/classes/java/awt/Component.java
changeset 25187 08aff438def8
parent 25162 c388078278d4
child 25561 b1aa8451f943
equal deleted inserted replaced
25186:63e1a2ec30f5 25187:08aff438def8
  8638      */
  8638      */
  8639     public void firePropertyChange(String propertyName, char oldValue, char newValue) {
  8639     public void firePropertyChange(String propertyName, char oldValue, char newValue) {
  8640         if (changeSupport == null || oldValue == newValue) {
  8640         if (changeSupport == null || oldValue == newValue) {
  8641             return;
  8641             return;
  8642         }
  8642         }
  8643         firePropertyChange(propertyName, new Character(oldValue), new Character(newValue));
  8643         firePropertyChange(propertyName, Character.valueOf(oldValue), Character.valueOf(newValue));
  8644     }
  8644     }
  8645 
  8645 
  8646     /**
  8646     /**
  8647      * Reports a bound property change.
  8647      * Reports a bound property change.
  8648      *
  8648      *