We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72fd7c8 commit 692ff62Copy full SHA for 692ff62
vaadin-grid-filter/src/main/java/software/xdev/vaadin/gridfilter/business/operation/IsEmptyOp.java
@@ -48,6 +48,8 @@ public String displayKey()
48
@Override
49
public boolean test(final Object input, final NoValue filterValue)
50
{
51
- return input == null || (input instanceof final String s && s.isEmpty());
+ return input == null
52
+ || input instanceof final String s
53
+ && s.isEmpty();
54
}
55
0 commit comments