SOLR-9784: removed unused method

This commit is contained in:
Noble Paul 2016-11-26 12:24:45 +05:30
parent 2badb2b4d8
commit 579813ef13
1 changed files with 0 additions and 30 deletions

View File

@ -1563,36 +1563,6 @@ public class CloudSolrClient extends SolrClient {
return lbClient; 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. * Constructs {@link CloudSolrClient} instances from provided configuration.
*/ */