Skip to content

Commit cb8d640

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent cee2935 commit cb8d640

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
@@ -272,7 +272,7 @@ public class EsqlFunctionRegistry {
272272
}
273273

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

277277
// list of functions grouped by type of functions (aggregate, statistics, math etc) and ordered alphabetically inside each group
278278
// a single function will have one entry for itself with its name associated to its instance and, also, one entry for each alias
@@ -353,7 +353,7 @@ private static FunctionDefinition[][] functions() {
353353
def(Values.class, uni(Values::new), "values"),
354354
def(WeightedAvg.class, bi(WeightedAvg::new), "weighted_avg"),
355355
def(Present.class, uni(Present::new), "present"),
356-
def(Absent.class, uni(Absent::new), "absent")},
356+
def(Absent.class, uni(Absent::new), "absent") },
357357
// math
358358
new FunctionDefinition[] {
359359
def(Abs.class, Abs::new, "abs"),

0 commit comments

Comments
 (0)