修复DefaultTrustManager空指针问题

This commit is contained in:
Looly
2022-11-08 19:10:49 +08:00
parent ecc4cd64eb
commit 3776f5a1ef
2 changed files with 2 additions and 1 deletions

View File

@@ -22,7 +22,7 @@ public class DefaultTrustManager extends X509ExtendedTrustManager {
@Override
public X509Certificate[] getAcceptedIssuers() {
return null;
return new X509Certificate[0];
}
@Override