EA-99425 - NPE: ComboboxSpeedSearch.getElementText

This commit is contained in:
Gregory.Shrago
2017-03-23 15:28:35 +03:00
parent 73503ec17f
commit 44564a455f
@@ -56,6 +56,6 @@ public class ComboboxSpeedSearch extends SpeedSearchBase<JComboBox> {
}
protected String getElementText(Object element) {
return element.toString();
return element == null ? null : element.toString();
}
}