Skip to content

Commit 46b88d1

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 5038461 commit 46b88d1

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

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

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ public class ChangePointOperator implements Operator {
3535

3636
public static final int INPUT_VALUE_COUNT_LIMIT = 1000;
3737

38-
public record Factory(ChangePointDetector changePointDetector, int channel, String sourceText, int sourceLine, int sourceColumn) implements OperatorFactory {
38+
public record Factory(ChangePointDetector changePointDetector, int channel, String sourceText, int sourceLine, int sourceColumn)
39+
implements
40+
OperatorFactory {
3941
@Override
4042
public Operator get(DriverContext driverContext) {
4143
return new ChangePointOperator(driverContext, changePointDetector, channel, sourceText, sourceLine, sourceColumn);
@@ -60,7 +62,14 @@ public String describe() {
6062

6163
// TODO: make org.elasticsearch.xpack.esql.core.tree.Source available here
6264
// (by modularizing esql-core) and use that instead of the individual fields.
63-
public ChangePointOperator(DriverContext driverContext, ChangePointDetector changePointDetector, int channel, String sourceText, int sourceLine, int sourceColumn) {
65+
public ChangePointOperator(
66+
DriverContext driverContext,
67+
ChangePointDetector changePointDetector,
68+
int channel,
69+
String sourceText,
70+
int sourceLine,
71+
int sourceColumn
72+
) {
6473
this.driverContext = driverContext;
6574
this.changePointDetector = changePointDetector;
6675
this.channel = channel;

0 commit comments

Comments
 (0)