修复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

@ -18,6 +18,7 @@
* 【core 】 修复IoUtil.copyByNIO方法写出时没有flush的问题
* 【core 】 修复TreeBuilder中使用HashMap导致默认乱序问题issue#I5Z8C5@Gitee
* 【core 】 修复StrUtil.subWithLength负数问题issue#I5YN49@Gitee
* 【core 】 修复DefaultTrustManager空指针问题issue#2716@Github
-------------------------------------------------------------------------------------------------------------
# 5.8.9 (2022-10-22)

View File

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