removed unused field

Original commit: elastic/x-pack-elasticsearch@1c4e94b5b2
This commit is contained in:
Martijn van Groningen 2015-04-23 22:00:46 +02:00
parent 4e8ed283e7
commit 946df191e9

@ -8,7 +8,6 @@ package org.elasticsearch.watcher.execution;
import org.elasticsearch.ElasticsearchIllegalStateException; import org.elasticsearch.ElasticsearchIllegalStateException;
import org.elasticsearch.ExceptionsHelper; import org.elasticsearch.ExceptionsHelper;
import org.elasticsearch.action.ActionListener; import org.elasticsearch.action.ActionListener;
import org.elasticsearch.cluster.ClusterService;
import org.elasticsearch.cluster.ClusterState; import org.elasticsearch.cluster.ClusterState;
import org.elasticsearch.common.component.AbstractComponent; import org.elasticsearch.common.component.AbstractComponent;
import org.elasticsearch.common.inject.Inject; import org.elasticsearch.common.inject.Inject;
@ -46,7 +45,6 @@ public class ExecutionService extends AbstractComponent {
private final HistoryStore historyStore; private final HistoryStore historyStore;
private final WatchExecutor executor; private final WatchExecutor executor;
private final WatchStore watchStore; private final WatchStore watchStore;
private final ClusterService clusterService;
private final WatchLockService watchLockService; private final WatchLockService watchLockService;
private final Clock clock; private final Clock clock;
@ -54,13 +52,12 @@ public class ExecutionService extends AbstractComponent {
@Inject @Inject
public ExecutionService(Settings settings, HistoryStore historyStore, WatchExecutor executor, WatchStore watchStore, public ExecutionService(Settings settings, HistoryStore historyStore, WatchExecutor executor, WatchStore watchStore,
WatchLockService watchLockService, ClusterService clusterService, Clock clock) { WatchLockService watchLockService, Clock clock) {
super(settings); super(settings);
this.historyStore = historyStore; this.historyStore = historyStore;
this.executor = executor; this.executor = executor;
this.watchStore = watchStore; this.watchStore = watchStore;
this.watchLockService = watchLockService; this.watchLockService = watchLockService;
this.clusterService = clusterService;
this.clock = clock; this.clock = clock;
} }