Fix formatting

This commit is contained in:
Roman Zabaluev 2023-08-02 20:44:02 +08:00
parent 1c781175e4
commit 58000135b5

View file

@ -17,7 +17,7 @@ public class InsecureSslEngineFactory implements SslEngineFactory {
@Override
public SSLEngine createClientSslEngine(String peerHost, int peerPort, String endpointIdentification) {
var trustManagers = InsecureTrustManagerFactory.INSTANCE.getTrustManagers();
var trustManagers = InsecureTrustManagerFactory.INSTANCE.getTrustManagers();
try {
this.sslContext = SSLContext.getInstance("SSL");
sslContext.init(null, trustManagers, new SecureRandom());