Skip to content
Snippets Groups Projects
Commit e3409e68 authored by izabel's avatar izabel
Browse files

custom filters: deal with empty expression field

SVN: 12792
parent a6be0064
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,9 @@ class FilterColumnChooserDialog extends Dialog
@Override
public void componentSelected(ComponentEvent ce)
{
String expression = expressionField.getValue();
String expression =
expressionField.getValue() != null ? expressionField.getValue()
: "";
int cursor = expressionField.getCursorPos();
for (String column : columnChooser.getSelectedItems())
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment