Skip to content

Commit b61da48

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 8056fde commit b61da48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/EsqlFunctionRegistry.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ public class EsqlFunctionRegistry {
269269
}
270270

271271
// Translation table for error messaging in the following function
272-
private static final String[] NUM_NAMES = {"zero", "one", "two", "three", "four", "five", "six"};
272+
private static final String[] NUM_NAMES = { "zero", "one", "two", "three", "four", "five", "six" };
273273

274274
// list of functions grouped by type of functions (aggregate, statistics, math etc) and ordered alphabetically inside each group
275275
// a single function will have one entry for itself with its name associated to its instance and, also, one entry for each alias
@@ -349,7 +349,7 @@ private static FunctionDefinition[][] functions() {
349349
def(Top.class, tri(Top::new), "top"),
350350
def(Values.class, uni(Values::new), "values"),
351351
def(WeightedAvg.class, bi(WeightedAvg::new), "weighted_avg"),
352-
def(Present.class, uni(Present::new), "present")},
352+
def(Present.class, uni(Present::new), "present") },
353353
// math
354354
new FunctionDefinition[] {
355355
def(Abs.class, Abs::new, "abs"),

0 commit comments

Comments
 (0)