From c8c2f2f25b28da694fae88868b12347bc5a2393c Mon Sep 17 00:00:00 2001 From: Chris Hostetter Date: Thu, 20 Jun 2019 16:03:30 -0700 Subject: [PATCH] SOLR-12988: Fix Revert an (erroneous) assigment to useSsl was left in the constructor after the (intended) conditional assigment, rendering the conditional logic useless --- .../src/java/org/apache/solr/util/SSLTestConfig.java | 1 - 1 file changed, 1 deletion(-) diff --git a/solr/test-framework/src/java/org/apache/solr/util/SSLTestConfig.java b/solr/test-framework/src/java/org/apache/solr/util/SSLTestConfig.java index fb21ef7bbbd..502df407915 100644 --- a/solr/test-framework/src/java/org/apache/solr/util/SSLTestConfig.java +++ b/solr/test-framework/src/java/org/apache/solr/util/SSLTestConfig.java @@ -105,7 +105,6 @@ public class SSLTestConfig { } else { this.useSsl = useSSL; } - this.useSsl = useSSL; this.clientAuth = clientAuth; this.checkPeerName = checkPeerName;