Skip to content

Commit 3c6750d

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 638facb commit 3c6750d

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
import org.elasticsearch.compute.Describable;
1818
import org.elasticsearch.compute.data.Page;
1919
import org.elasticsearch.compute.operator.exchange.ExchangeSinkOperator;
20-
import org.elasticsearch.compute.operator.topn.TopNOperator;
2120
import org.elasticsearch.core.Nullable;
2221
import org.elasticsearch.core.Releasable;
2322
import org.elasticsearch.core.Releasables;

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ public void clearRefCounters() {
126126
}
127127
}
128128

129-
130129
static final class BytesOrder implements Releasable, Accountable {
131130
private static final long BASE_RAM_USAGE = RamUsageEstimator.shallowSizeOfInstance(BytesOrder.class);
132131
private final CircuitBreaker breaker;
@@ -169,7 +168,7 @@ public long ramBytesUsed() {
169168

170169
@Override
171170
public void close() {
172-
// assert open;
171+
// assert open;
173172
open = false;
174173
logger.warn("REMOVING " + (-ramBytesUsed()));
175174
logger.warn("", new Throwable());
@@ -236,7 +235,7 @@ private void writeValues(int position, Row destination) {
236235
if (refCounted != null) {
237236
destination.setShardRefCountersAndShard(refCounted);
238237
}
239-
logger.warn("ENCODING VALUE FOR " + e + " AT OFFSET " + destination.values.length());
238+
logger.warn("ENCODING VALUE FOR " + e + " AT OFFSET " + destination.values.length());
240239
e.writeValue(destination.values, position);
241240
}
242241
}

x-pack/plugin/esql/qa/server/multi-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/multi_node/GenerativeIT.java

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

88
package org.elasticsearch.xpack.esql.qa.multi_node;
99

10-
import com.carrotsearch.randomizedtesting.annotations.Seed;
1110
import com.carrotsearch.randomizedtesting.annotations.ThreadLeakFilters;
1211

1312
import org.elasticsearch.common.settings.Settings;

0 commit comments

Comments
 (0)