--- old/src/share/classes/javax/swing/plaf/ComboBoxUI.java 2014-06-25 15:48:29.000000000 -0700 +++ new/src/share/classes/javax/swing/plaf/ComboBoxUI.java 2014-06-25 15:48:29.000000000 -0700 @@ -38,15 +38,15 @@ /** * Set the visibility of the popup */ - public abstract void setPopupVisible( JComboBox c, boolean v ); + public abstract void setPopupVisible( JComboBox c, boolean v ); /** * Determine the visibility of the popup */ - public abstract boolean isPopupVisible( JComboBox c ); + public abstract boolean isPopupVisible( JComboBox c ); /** * Determine whether or not the combo box itself is traversable */ - public abstract boolean isFocusTraversable( JComboBox c ); + public abstract boolean isFocusTraversable( JComboBox c ); }