--- old/src/share/classes/javax/swing/plaf/basic/BasicComboBoxEditor.java 2014-06-14 12:28:26.000000000 -0700 +++ new/src/share/classes/javax/swing/plaf/basic/BasicComboBoxEditor.java 2014-06-14 12:28:26.000000000 -0700 @@ -100,7 +100,7 @@ // Must take the value from the editor and get the value and cast it to the new type. Class cls = oldValue.getClass(); try { - Method method = MethodUtil.getMethod(cls, "valueOf", new Class[]{String.class}); + Method method = MethodUtil.getMethod(cls, "valueOf", new Class[]{String.class}); newValue = MethodUtil.invoke(method, oldValue, new Object[] { editor.getText()}); } catch (Exception ex) { // Fail silently and return the newValue (a String object)