Skip to content

Commit 6643133

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 2a18b4b commit 6643133

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

x-pack/plugin/esql/compute/gen/src/main/java/org/elasticsearch/compute/gen/EvaluatorImplementer.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,7 @@ private TypeSpec type() {
105105
processFunction.args.forEach(a -> a.declareField(builder));
106106
builder.addField(DRIVER_CONTEXT, "driverContext", Modifier.PRIVATE, Modifier.FINAL);
107107

108-
var hasFixedProcessFunctionArgs = processFunction.args.stream()
109-
.anyMatch(x -> x instanceof FixedProcessFunctionArg == false);
108+
var hasFixedProcessFunctionArgs = processFunction.args.stream().anyMatch(x -> x instanceof FixedProcessFunctionArg == false);
110109
var usesWarnings = processFunction.warnExceptions.isEmpty() == false || hasFixedProcessFunctionArgs;
111110

112111
if (usesWarnings) {

0 commit comments

Comments
 (0)