Skip to content

Commit

Permalink
fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
alexvrv committed Sep 4, 2024
1 parent 704fba6 commit e462b7d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ public static SSLConnectionSocketFactory buildSSLSocketFactory(final WebClientOp
}

sslContext = SSLContext.getInstance(protocol);
sslContext.init(getKeyManagers(options), new X509ExtendedTrustManager[]{new InsecureTrustManager()}, null);
sslContext.init(getKeyManagers(options),
new X509ExtendedTrustManager[]{new InsecureTrustManager()}, null);
}

return new HtmlUnitSSLConnectionSocketFactory(sslContext, NoopHostnameVerifier.INSTANCE,
Expand Down

0 comments on commit e462b7d

Please sign in to comment.