Skip to content

Commit 4dd94b7

Browse files
committed
Spotless format
1 parent 78cb4e0 commit 4dd94b7

File tree

6 files changed

+5
-8
lines changed

6 files changed

+5
-8
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,7 @@
7777
* and break-point-able as possible.
7878
*/
7979
public class GroupingAggregatorImplementer {
80-
private static final List<ClassName> GROUP_IDS_CLASSES =
81-
List.of(INT_ARRAY_BLOCK, INT_BIG_ARRAY_BLOCK, INT_VECTOR);
80+
private static final List<ClassName> GROUP_IDS_CLASSES = List.of(INT_ARRAY_BLOCK, INT_BIG_ARRAY_BLOCK, INT_VECTOR);
8281

8382
private final TypeElement declarationType;
8483
private final List<TypeMirror> warnExceptions;

x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/aggregation/CountGroupingAggregatorFunction.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@
1313
import org.elasticsearch.compute.data.ElementType;
1414
import org.elasticsearch.compute.data.IntArrayBlock;
1515
import org.elasticsearch.compute.data.IntBigArrayBlock;
16-
import org.elasticsearch.compute.data.IntBlock;
1716
import org.elasticsearch.compute.data.IntVector;
18-
import org.elasticsearch.compute.data.IntVectorBlock;
1917
import org.elasticsearch.compute.data.LongBlock;
2018
import org.elasticsearch.compute.data.LongVector;
2119
import org.elasticsearch.compute.data.Page;

x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/aggregation/FromPartialGroupingAggregatorFunction.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,13 @@ public void add(int positionOffset, IntBlock groupIds) {
4747
assert false : "Intermediate group id must not have nulls";
4848
throw new IllegalStateException("Intermediate group id must not have nulls");
4949
}
50+
5051
@Override
5152
public void add(int positionOffset, IntArrayBlock groupIds) {
5253
assert false : "Intermediate group id must not have nulls";
5354
throw new IllegalStateException("Intermediate group id must not have nulls");
5455
}
56+
5557
@Override
5658
public void add(int positionOffset, IntBigArrayBlock groupIds) {
5759
assert false : "Intermediate group id must not have nulls";

x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/aggregation/GroupingAggregator.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
import org.elasticsearch.compute.data.IntBigArrayBlock;
1414
import org.elasticsearch.compute.data.IntBlock;
1515
import org.elasticsearch.compute.data.IntVector;
16-
import org.elasticsearch.compute.data.IntVectorBlock;
1716
import org.elasticsearch.compute.data.Page;
1817
import org.elasticsearch.compute.operator.DriverContext;
1918
import org.elasticsearch.core.Releasable;
@@ -47,10 +46,12 @@ public GroupingAggregatorFunction.AddInput prepareProcessPage(SeenGroupIds seenG
4746
public void add(int positionOffset, IntBlock groupIds) {
4847
throw new IllegalStateException("Intermediate group id must not have nulls");
4948
}
49+
5050
@Override
5151
public void add(int positionOffset, IntArrayBlock groupIds) {
5252
throw new IllegalStateException("Intermediate group id must not have nulls");
5353
}
54+
5455
@Override
5556
public void add(int positionOffset, IntBigArrayBlock groupIds) {
5657
throw new IllegalStateException("Intermediate group id must not have nulls");

x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/aggregation/GroupingAggregatorFunction.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
import org.elasticsearch.compute.data.Block;
1111
import org.elasticsearch.compute.data.ConstantNullBlock;
12-
import org.elasticsearch.compute.data.ConstantNullVector;
1312
import org.elasticsearch.compute.data.IntArrayBlock;
1413
import org.elasticsearch.compute.data.IntBigArrayBlock;
1514
import org.elasticsearch.compute.data.IntBlock;

x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/HashAggregationOperator.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@
2222
import org.elasticsearch.compute.data.Block;
2323
import org.elasticsearch.compute.data.IntArrayBlock;
2424
import org.elasticsearch.compute.data.IntBigArrayBlock;
25-
import org.elasticsearch.compute.data.IntBlock;
2625
import org.elasticsearch.compute.data.IntVector;
27-
import org.elasticsearch.compute.data.IntVectorBlock;
2826
import org.elasticsearch.compute.data.Page;
2927
import org.elasticsearch.core.Releasables;
3028
import org.elasticsearch.core.TimeValue;

0 commit comments

Comments
 (0)