aboutsummaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorHarald Musum <musum@oath.com>2018-11-05 15:02:09 +0100
committerHarald Musum <musum@oath.com>2018-11-05 15:02:09 +0100
commit74d7859fdcf228c8679eac9da8fc2fc8e187db1a (patch)
tree6a187be00c5f43b274a4aac52101e8eab110c1ad /config-model
parente5d0e505d22f728ff97da039c6eceb5860147511 (diff)
Remove unused field
Diffstat (limited to 'config-model')
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/VespaModel.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/VespaModel.java b/config-model/src/main/java/com/yahoo/vespa/model/VespaModel.java
index f2ddbd8ae81..fef198f7939 100644
--- a/config-model/src/main/java/com/yahoo/vespa/model/VespaModel.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/VespaModel.java
@@ -113,8 +113,6 @@ public final class VespaModel extends AbstractConfigProducerRoot implements Seri
/** The global ranking constants of this model */
private final RankingConstants rankingConstants = new RankingConstants();
- private DeployLogger deployLogger;
-
/** The validation overrides of this. This is never null. */
private final ValidationOverrides validationOverrides;
@@ -171,7 +169,6 @@ public final class VespaModel extends AbstractConfigProducerRoot implements Seri
deployState.getImportedModels());
if (complete) { // create a a completed, frozen model
- this.deployLogger = deployState.getDeployLogger();
configModelRepo.readConfigModels(deployState, this, builder, root, configModelRegistry);
addServiceClusters(deployState, builder);
this.allocatedHosts = AllocatedHosts.withHosts(hostSystem.getHostSpecs()); // must happen after the two lines above
@@ -182,12 +179,10 @@ public final class VespaModel extends AbstractConfigProducerRoot implements Seri
root.prepare(configModelRepo);
configModelRepo.prepareConfigModels(deployState);
validateWrapExceptions();
- this.deployLogger = null;
}
else { // create a model with no services instantiated and the given file distributor
this.allocatedHosts = AllocatedHosts.withHosts(hostSystem.getHostSpecs());
this.fileDistributor = fileDistributor;
- this.deployLogger = deployState.getDeployLogger();
}
}