diff --git a/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/data/MockBlockFactory.java b/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/data/MockBlockFactory.java index 01ed4407c666..dfec3aba2bf8 100644 --- a/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/data/MockBlockFactory.java +++ b/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/data/MockBlockFactory.java @@ -177,26 +177,6 @@ public BooleanBlock newConstantBooleanBlockWith(boolean value, int positions, lo return b; } - // public static class MockIntBlockBuilder extends IntBlockBuilder { - // - // boolean built = false; - // - // MockIntBlockBuilder(int estimatedSize, BlockFactory blockFactory) { - // super(estimatedSize, blockFactory); - // } - // - // @Override - // public IntBlock build() { - // built = true; - // return super.build(); - // } - // - // public boolean isBuilt() { - // return built; - // } - // - // } - @Override public IntBlock.Builder newIntBlockBuilder(int estimatedSize) { // var b = new MockIntBlockBuilder(estimatedSize, super);