Skip to content

Commit d8e6b20

Browse files
committed
indent
1 parent 3e363b2 commit d8e6b20

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/aggregation/X-ValuesAggregator.java.st

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -347,12 +347,12 @@ $endif$
347347
selectedCountsSize = adjust;
348348
int[] selectedCounts = new int[selectedCountsLen];
349349
for (int id = 0; id < values.size(); id++) {
350-
$if(long||BytesRef||double)$
350+
$if(long||BytesRef||double)$
351351
int group = (int) values.getKey1(id);
352-
$elseif(float||int)$
352+
$elseif(float||int)$
353353
long both = values.get(id);
354354
int group = (int) (both >>> Float.SIZE);
355-
$endif$
355+
$endif$
356356
if (group < selectedCounts.length) {
357357
selectedCounts[group]--;
358358
}

0 commit comments

Comments
 (0)