You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 10, 2026. It is now read-only.
Hi all!
I found a problem in Communication.java class, version 11.X. If the protocols is not null, the class httpClient will never be instantiated. Maybe you should remove the first "if" statement since it is already been done (and handled) in the next lines of code.
public Communication() {
try {
if (getBestProtocol(SSLContext.getDefault().getDefaultSSLParameters().getProtocols()) == null) {
String protocol = getBestProtocol(SSLContext.getDefault().getSupportedSSLParameters().getProtocols());
if (protocol == null) {
throw new IllegalStateException("No supported TLS protocols available");
}
...