summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-11-09 15:04:05 +0100
committerHenning Baldersheim <balder@yahoo-inc.com>2017-11-09 15:04:05 +0100
commitf838b91f6a2e7e7f4153a2ca5c81390f1e7fa878 (patch)
treeb58d9239b5e85844db5217faf79b2b5c58c3e3a4 /config-model
parentf8de7b713677b7418b23a9731dc07919fdc4c7bc (diff)
Wire in deployment so that we can copy the file in when the old way is gone.
Diffstat (limited to 'config-model')
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/filedistribution/FileDistributor.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/filedistribution/FileDistributor.java b/config-model/src/main/java/com/yahoo/vespa/model/filedistribution/FileDistributor.java
index 8860f5c2249..f6cc9203d00 100644
--- a/config-model/src/main/java/com/yahoo/vespa/model/filedistribution/FileDistributor.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/filedistribution/FileDistributor.java
@@ -110,11 +110,5 @@ public class FileDistributor {
public void reloadDeployFileDistributor(FileDistribution dbHandler) {
dbHandler.reloadDeployFileDistributor();
}
-
- private Set<String> union(Set<String> hosts, String... additionalHosts) {
- Set<String> result = new HashSet<>(hosts);
- result.addAll(asList(additionalHosts));
- return result;
- }
}