Skip to content

Commit ca48602

Browse files
committed
Removed unused method
1 parent 172f73e commit ca48602

File tree

1 file changed

+0
-7
lines changed
  • x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical

1 file changed

+0
-7
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/FilterExec.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,12 @@
99
import org.elasticsearch.common.io.stream.NamedWriteableRegistry;
1010
import org.elasticsearch.common.io.stream.StreamInput;
1111
import org.elasticsearch.common.io.stream.StreamOutput;
12-
import org.elasticsearch.xpack.esql.core.expression.Attribute;
1312
import org.elasticsearch.xpack.esql.core.expression.Expression;
1413
import org.elasticsearch.xpack.esql.core.tree.NodeInfo;
1514
import org.elasticsearch.xpack.esql.core.tree.Source;
1615
import org.elasticsearch.xpack.esql.io.stream.PlanStreamInput;
1716

1817
import java.io.IOException;
19-
import java.util.List;
2018
import java.util.Objects;
2119

2220
public class FilterExec extends UnaryExec {
@@ -63,11 +61,6 @@ public Expression condition() {
6361
return condition;
6462
}
6563

66-
@Override
67-
public List<Attribute> output() {
68-
return child().output();
69-
}
70-
7164
@Override
7265
public int hashCode() {
7366
return Objects.hash(condition, child());

0 commit comments

Comments
 (0)