Skip to content

Commit 6fc5f99

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 6d064f0 commit 6fc5f99

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ private static FunctionDefinition[][] functions() {
502502
def(Match.class, tri(Match::new), "match"),
503503
def(MultiMatch.class, MultiMatch::new, "multi_match"),
504504
def(QueryString.class, bi(QueryString::new), "qstr"),
505-
def(MatchPhrase.class, tri(MatchPhrase::new), "match_phrase")},
505+
def(MatchPhrase.class, tri(MatchPhrase::new), "match_phrase") },
506506
// time-series functions
507507
new FunctionDefinition[] {
508508
def(Rate.class, uni(Rate::new), "rate"),
@@ -517,13 +517,13 @@ private static FunctionDefinition[][] functions() {
517517
def(AbsentOverTime.class, uni(AbsentOverTime::new), "absent_over_time"),
518518
def(AvgOverTime.class, uni(AvgOverTime::new), "avg_over_time"),
519519
def(LastOverTime.class, uni(LastOverTime::new), "last_over_time"),
520-
def(FirstOverTime.class, uni(FirstOverTime::new), "first_over_time")}};
520+
def(FirstOverTime.class, uni(FirstOverTime::new), "first_over_time") } };
521521

522522
}
523523

524524
private static FunctionDefinition[][] snapshotFunctions() {
525-
return new FunctionDefinition[][]{
526-
new FunctionDefinition[]{
525+
return new FunctionDefinition[][] {
526+
new FunctionDefinition[] {
527527
// The delay() function is for debug/snapshot environments only and should never be enabled in a non-snapshot build.
528528
// This is an experimental function and can be removed without notice.
529529
def(Delay.class, Delay::new, "delay"),

0 commit comments

Comments
 (0)