mirror of https://github.com/apache/lucene.git
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:
parent
aa29bea071
commit
c8c2f2f25b
|
@ -105,7 +105,6 @@ public class SSLTestConfig {
|
|||
} else {
|
||||
this.useSsl = useSSL;
|
||||
}
|
||||
this.useSsl = useSSL;
|
||||
this.clientAuth = clientAuth;
|
||||
this.checkPeerName = checkPeerName;
|
||||
|
||||
|
|
Loading…
Reference in New Issue