aboutsummaryrefslogtreecommitdiffstats
path: root/controller-server
diff options
context:
space:
mode:
authortoby <smorgrav@yahoo-inc.com>2018-10-04 09:49:54 +0200
committertoby <smorgrav@yahoo-inc.com>2018-10-04 09:49:54 +0200
commitef0f66559b173a35ac37f3b42b96c376711b918e (patch)
tree75fd2679a1476f5f4c7772c2962057396c0e9459 /controller-server
parente9d5eadda69dcc2e3619ba7fcf5473e27f323c24 (diff)
Remove rests from a bad idea
Diffstat (limited to 'controller-server')
-rw-r--r--controller-server/src/main/java/com/yahoo/vespa/hosted/controller/ApplicationController.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/ApplicationController.java b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/ApplicationController.java
index c695b1a838c..79bc72f950d 100644
--- a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/ApplicationController.java
+++ b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/ApplicationController.java
@@ -95,7 +95,6 @@ public class ApplicationController {
private final RotationRepository rotationRepository;
private final AthenzClientFactory zmsClientFactory;
private final NameService nameService;
- private final NameService newNameService;
private final ConfigServer configServer;
private final RoutingGenerator routingGenerator;
private final Clock clock;
@@ -104,14 +103,13 @@ public class ApplicationController {
ApplicationController(Controller controller, CuratorDb curator,
AthenzClientFactory zmsClientFactory, RotationsConfig rotationsConfig,
- NameService nameService, NameService newNameService, ConfigServer configServer,
+ NameService nameService, ConfigServer configServer,
ArtifactRepository artifactRepository, ApplicationStore applicationStore,
RoutingGenerator routingGenerator, BuildService buildService, Clock clock) {
this.controller = controller;
this.curator = curator;
this.zmsClientFactory = zmsClientFactory;
this.nameService = nameService;
- this.newNameService = newNameService;
this.configServer = configServer;
this.routingGenerator = routingGenerator;
this.clock = clock;