Skip to content

Commit 9e680e8

Browse files
committed
Remove ParseFieldMatcher usages from TransportAction
1 parent 64c3212 commit 9e680e8

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

core/src/main/java/org/elasticsearch/action/support/TransportAction.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
import org.elasticsearch.action.ActionRequestValidationException;
2727
import org.elasticsearch.action.ActionResponse;
2828
import org.elasticsearch.cluster.metadata.IndexNameExpressionResolver;
29-
import org.elasticsearch.common.ParseFieldMatcher;
3029
import org.elasticsearch.common.component.AbstractComponent;
3130
import org.elasticsearch.common.settings.Settings;
3231
import org.elasticsearch.tasks.Task;
@@ -43,7 +42,6 @@ public abstract class TransportAction<Request extends ActionRequest, Response ex
4342
protected final ThreadPool threadPool;
4443
protected final String actionName;
4544
private final ActionFilter[] filters;
46-
protected final ParseFieldMatcher parseFieldMatcher;
4745
protected final IndexNameExpressionResolver indexNameExpressionResolver;
4846
protected final TaskManager taskManager;
4947

@@ -53,7 +51,6 @@ protected TransportAction(Settings settings, String actionName, ThreadPool threa
5351
this.threadPool = threadPool;
5452
this.actionName = actionName;
5553
this.filters = actionFilters.filters();
56-
this.parseFieldMatcher = new ParseFieldMatcher(settings);
5754
this.indexNameExpressionResolver = indexNameExpressionResolver;
5855
this.taskManager = taskManager;
5956
}

0 commit comments

Comments
 (0)