SOLR-12988: Fix Revert

an (erroneous) assigment to useSsl was left in the constructor after the (intended) conditional assigment, rendering the conditional logic useless

(cherry picked from commit c8c2f2f25b)
This commit is contained in:
Chris Hostetter 2019-06-20 16:03:30 -07:00
parent 9e017ba83c
commit 456bc4dbf9
1 changed files with 0 additions and 1 deletions

View File

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