SOLR-12988: Fix Revert

an (erroneous) assigment to useSsl was left in the constructor after the (intended) conditional assigment, rendering the conditional logic useless
This commit is contained in:
Chris Hostetter 2019-06-20 16:03:30 -07:00
parent aa29bea071
commit c8c2f2f25b
1 changed files with 0 additions and 1 deletions

View File

@ -105,7 +105,6 @@ public class SSLTestConfig {
} else { } else {
this.useSsl = useSSL; this.useSsl = useSSL;
} }
this.useSsl = useSSL;
this.clientAuth = clientAuth; this.clientAuth = clientAuth;
this.checkPeerName = checkPeerName; this.checkPeerName = checkPeerName;