Skip to content

Commit 28f16eb

Browse files
committed
Remove unused constant evaluators
1 parent 0900503 commit 28f16eb

File tree

1 file changed

+2
-2
lines changed
  • x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,13 +220,13 @@ record Factory() implements ExpressionEvaluator.Factory {
220220
@Override
221221
public ConstantTrueEvaluator get(DriverContext context) {
222222
return new ConstantTrueEvaluator(context);
223-
}
223+
};
224224

225225
@Override
226226
public String toString() {
227227
return NAME;
228228
}
229-
}
229+
};
230230
}
231231

232232
public static final ExpressionEvaluator.Factory CONSTANT_TRUE_FACTORY = new ConstantTrueEvaluator.Factory();

0 commit comments

Comments
 (0)