Skip to content

Commit 7492fad

Browse files
committed
Remove unused process method from MvContains class.
1 parent 66ba735 commit 7492fad

File tree

1 file changed

+0
-8
lines changed
  • x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/multivalue

1 file changed

+0
-8
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/multivalue/MvContains.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -206,14 +206,6 @@ public ExpressionEvaluator.Factory toEvaluator(ToEvaluator toEvaluator) {
206206
};
207207
}
208208

209-
static void process(BooleanBlock.Builder builder, int position, Block subset) {
210-
if (subset.isNull(position) == false) {
211-
appendTo(builder, false);
212-
return;
213-
}
214-
appendTo(builder, true);
215-
}
216-
217209
// @Evaluator(extraName = "Int") see end of file.
218210
static void process(BooleanBlock.Builder builder, int position, IntBlock field1, IntBlock field2) {
219211
appendTo(builder, containsAll(field1, field2, position, IntBlock::getInt));

0 commit comments

Comments
 (0)