Skip to content

Commit 31e9e20

Browse files
committed
undo making BytesRefBlockHash public
1 parent 5674046 commit 31e9e20

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

x-pack/plugin/esql/compute/src/main/generated-src/org/elasticsearch/compute/aggregation/blockhash/BytesRefBlockHash.java

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

x-pack/plugin/esql/compute/src/main/generated-src/org/elasticsearch/compute/aggregation/blockhash/DoubleBlockHash.java

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

x-pack/plugin/esql/compute/src/main/generated-src/org/elasticsearch/compute/aggregation/blockhash/IntBlockHash.java

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

x-pack/plugin/esql/compute/src/main/generated-src/org/elasticsearch/compute/aggregation/blockhash/LongBlockHash.java

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public abstract class BlockHash implements Releasable, SeenGroupIds {
3838

3939
protected final BlockFactory blockFactory;
4040

41-
protected BlockHash(BlockFactory blockFactory) {
41+
BlockHash(BlockFactory blockFactory) {
4242
this.blockFactory = blockFactory;
4343
}
4444

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ $endif$
6363
/**
6464
* Maps a {@link $Type$Block} column to group ids.
6565
*/
66-
public final class $Type$BlockHash extends BlockHash {
66+
final class $Type$BlockHash extends BlockHash {
6767
private final int channel;
6868
final $Hash$ hash;
6969

@@ -105,7 +105,7 @@ public final class $Type$BlockHash extends BlockHash {
105105
}
106106
}
107107

108-
public IntVector add($Type$Vector vector) {
108+
IntVector add($Type$Vector vector) {
109109
$if(BytesRef)$
110110
BytesRef scratch = new BytesRef();
111111
$endif$
@@ -125,7 +125,7 @@ $endif$
125125
}
126126
}
127127

128-
public IntBlock add($Type$Block block) {
128+
IntBlock add($Type$Block block) {
129129
$if(BytesRef)$
130130
var ordinals = block.asOrdinals();
131131
if (ordinals != null) {

0 commit comments

Comments
 (0)