You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2016/12/06 23:13:13 UTC

[18/50] [abbrv] lucene-solr:apiv2: SOLR-9784: removed unused method

SOLR-9784: removed unused method


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/dce5964d
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/dce5964d
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/dce5964d

Branch: refs/heads/apiv2
Commit: dce5964d8a19c288b34b7671bcfeb2844d83d882
Parents: 950ff50
Author: Noble Paul <no...@apache.org>
Authored: Sat Nov 26 12:24:45 2016 +0530
Committer: Noble Paul <no...@apache.org>
Committed: Sat Nov 26 12:24:45 2016 +0530

----------------------------------------------------------------------
 .../solr/client/solrj/impl/CloudSolrClient.java | 30 --------------------
 1 file changed, 30 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/dce5964d/solr/solrj/src/java/org/apache/solr/client/solrj/impl/CloudSolrClient.java
----------------------------------------------------------------------
diff --git a/solr/solrj/src/java/org/apache/solr/client/solrj/impl/CloudSolrClient.java b/solr/solrj/src/java/org/apache/solr/client/solrj/impl/CloudSolrClient.java
index 241e2a1..6e4a256 100644
--- a/solr/solrj/src/java/org/apache/solr/client/solrj/impl/CloudSolrClient.java
+++ b/solr/solrj/src/java/org/apache/solr/client/solrj/impl/CloudSolrClient.java
@@ -1566,37 +1566,7 @@ public class CloudSolrClient extends SolrClient {
     
     return lbClient;
   }
-  
-  private static String buildZkHostString(Collection<String> zkHosts, String chroot) {
-    if (zkHosts == null || zkHosts.isEmpty()) {
-      throw new IllegalArgumentException("Cannot create CloudSearchClient without valid ZooKeeper host; none specified!");
-    }
-    
-    StringBuilder zkBuilder = new StringBuilder();
-    int lastIndexValue = zkHosts.size() - 1;
-    int i = 0;
-    for (String zkHost : zkHosts) {
-      zkBuilder.append(zkHost);
-      if (i < lastIndexValue) {
-        zkBuilder.append(",");
-      }
-      i++;
-    }
-    if (chroot != null) {
-      if (chroot.startsWith("/")) {
-        zkBuilder.append(chroot);
-      } else {
-        throw new IllegalArgumentException(
-            "The chroot must start with a forward slash.");
-      }
-    }
 
-    /* Log the constructed connection string and then initialize. */
-    final String zkHostString = zkBuilder.toString();
-    log.debug("Final constructed zkHost string: " + zkHostString);
-    return zkHostString;
-  }
-  
   /**
    * Constructs {@link CloudSolrClient} instances from provided configuration.
    */