From 946df191e9adec564cd514c0fb21be60d317b2ab Mon Sep 17 00:00:00 2001 From: Martijn van Groningen Date: Thu, 23 Apr 2015 22:00:46 +0200 Subject: [PATCH] removed unused field Original commit: elastic/x-pack-elasticsearch@1c4e94b5b2759b9c9e30dbb24f2969a8952bd02d --- .../elasticsearch/watcher/execution/ExecutionService.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main/java/org/elasticsearch/watcher/execution/ExecutionService.java b/src/main/java/org/elasticsearch/watcher/execution/ExecutionService.java index d38c9d85ba0..07093e3b07e 100644 --- a/src/main/java/org/elasticsearch/watcher/execution/ExecutionService.java +++ b/src/main/java/org/elasticsearch/watcher/execution/ExecutionService.java @@ -8,7 +8,6 @@ package org.elasticsearch.watcher.execution; import org.elasticsearch.ElasticsearchIllegalStateException; import org.elasticsearch.ExceptionsHelper; import org.elasticsearch.action.ActionListener; -import org.elasticsearch.cluster.ClusterService; import org.elasticsearch.cluster.ClusterState; import org.elasticsearch.common.component.AbstractComponent; import org.elasticsearch.common.inject.Inject; @@ -46,7 +45,6 @@ public class ExecutionService extends AbstractComponent { private final HistoryStore historyStore; private final WatchExecutor executor; private final WatchStore watchStore; - private final ClusterService clusterService; private final WatchLockService watchLockService; private final Clock clock; @@ -54,13 +52,12 @@ public class ExecutionService extends AbstractComponent { @Inject public ExecutionService(Settings settings, HistoryStore historyStore, WatchExecutor executor, WatchStore watchStore, - WatchLockService watchLockService, ClusterService clusterService, Clock clock) { + WatchLockService watchLockService, Clock clock) { super(settings); this.historyStore = historyStore; this.executor = executor; this.watchStore = watchStore; this.watchLockService = watchLockService; - this.clusterService = clusterService; this.clock = clock; }