Skip to content

Commit cf0f2b2

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 0cc1249 commit cf0f2b2

File tree

5 files changed

+1
-12
lines changed

5 files changed

+1
-12
lines changed

x-pack/plugin/esql/src/main/generated-src/org/elasticsearch/xpack/esql/expression/function/aggregate/StdDevPopulation.java

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/src/main/generated-src/org/elasticsearch/xpack/esql/expression/function/aggregate/StdDevSample.java

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/src/main/generated-src/org/elasticsearch/xpack/esql/expression/function/aggregate/VariancePopulation.java

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/src/main/generated-src/org/elasticsearch/xpack/esql/expression/function/aggregate/VarianceSample.java

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,7 @@ public StdDev(
5454
}
5555

5656
public StdDev(Source source, Expression field, Expression filter, Expression variation) {
57-
this(
58-
source,
59-
field,
60-
filter,
61-
variation != null
62-
? List.of(variation)
63-
: List.of()
64-
);
57+
this(source, field, filter, variation != null ? List.of(variation) : List.of());
6558
}
6659

6760
private StdDev(Source source, Expression field, Expression filter, List<Expression> params) {

0 commit comments

Comments
 (0)