--- old/src/share/classes/javax/swing/plaf/synth/SynthComboBoxUI.java 2014-06-26 12:33:07.000000000 -0700 +++ new/src/share/classes/javax/swing/plaf/synth/SynthComboBoxUI.java 2014-06-26 12:33:07.000000000 -0700 @@ -120,7 +120,7 @@ updateStyle(comboBox); } - private void updateStyle(JComboBox comboBox) { + private void updateStyle(JComboBox comboBox) { SynthStyle oldStyle = style; SynthContext context = getContext(comboBox, ENABLED); @@ -220,7 +220,7 @@ // instead of doing anything special if (!(c instanceof JComboBox)) return SynthLookAndFeel.getComponentState(c); - JComboBox box = (JComboBox)c; + JComboBox box = (JComboBox)c; if (shouldActLikeButton()) { int state = ENABLED; if ((!c.isEnabled())) { @@ -263,7 +263,7 @@ * {@inheritDoc} */ @Override - protected ListCellRenderer createRenderer() { + protected ListCellRenderer createRenderer() { return new SynthComboBoxRenderer(); } @@ -372,7 +372,7 @@ */ @Override public void paintCurrentValue(Graphics g,Rectangle bounds,boolean hasFocus) { - ListCellRenderer renderer = comboBox.getRenderer(); + ListCellRenderer renderer = comboBox.getRenderer(); Component c; c = renderer.getListCellRendererComponent( @@ -710,11 +710,11 @@ */ private static class EditorFocusHandler implements FocusListener, PropertyChangeListener { - private JComboBox comboBox; + private JComboBox comboBox; private ComboBoxEditor editor = null; private Component editorComponent = null; - private EditorFocusHandler(JComboBox comboBox) { + private EditorFocusHandler(JComboBox comboBox) { this.comboBox = comboBox; editor = comboBox.getEditor(); if (editor != null){