Skip to content

Commit 692ff62

Browse files
committed
Fix codestyle
1 parent 72fd7c8 commit 692ff62

File tree

1 file changed

+3
-1
lines changed
  • vaadin-grid-filter/src/main/java/software/xdev/vaadin/gridfilter/business/operation

1 file changed

+3
-1
lines changed

vaadin-grid-filter/src/main/java/software/xdev/vaadin/gridfilter/business/operation/IsEmptyOp.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ public String displayKey()
4848
@Override
4949
public boolean test(final Object input, final NoValue filterValue)
5050
{
51-
return input == null || (input instanceof final String s && s.isEmpty());
51+
return input == null
52+
|| input instanceof final String s
53+
&& s.isEmpty();
5254
}
5355
}

0 commit comments

Comments
 (0)