aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/federation/http/ConfiguredSearcherHelper.java
diff options
context:
space:
mode:
Diffstat (limited to 'container-search/src/main/java/com/yahoo/search/federation/http/ConfiguredSearcherHelper.java')
-rw-r--r--container-search/src/main/java/com/yahoo/search/federation/http/ConfiguredSearcherHelper.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/container-search/src/main/java/com/yahoo/search/federation/http/ConfiguredSearcherHelper.java b/container-search/src/main/java/com/yahoo/search/federation/http/ConfiguredSearcherHelper.java
deleted file mode 100644
index 0fa235709f9..00000000000
--- a/container-search/src/main/java/com/yahoo/search/federation/http/ConfiguredSearcherHelper.java
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.search.federation.http;
-
-import java.util.ArrayList;
-import java.util.List;
-
-import com.yahoo.search.federation.ProviderConfig;
-
-/**
- * Some static helper classes for configured*Searcher classes
- *
- * @author bratseth
- */
-// TODO: Remove on Vespa 7
-class ConfiguredSearcherHelper {
-
- /** No instantiation */
- private ConfiguredSearcherHelper() { }
-
- public static List<Connection> toConnectionList(ProviderConfig providerConfig) {
- List<Connection> connections=new ArrayList<>();
- for(ProviderConfig.Node node : providerConfig.node()) {
- connections.add(new Connection(node.host(), node.port()));
- }
- return connections;
- }
-
-}