mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
fix code
This commit is contained in:
@@ -66,7 +66,7 @@ public class CollectionValueMap<K, V> extends AbsCollValueMap<K, V> {
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建一个多值映射集合,默认基于{@link HashMap}与{@link ArrayList}实现
|
||||
* 创建一个多值映射集合,默认基于指定Map与指定List类型实现
|
||||
*
|
||||
* @param map 提供数据的原始集合
|
||||
*/
|
||||
|
@@ -39,7 +39,7 @@ public class ListValueMap<K, V> extends AbsCollValueMap<K, V> {
|
||||
}
|
||||
|
||||
/**
|
||||
* 基于{@link HashMap}创建一个值为{@link List}的多值映射集合
|
||||
* 基于指定Map创建一个值为{@link List}的多值映射集合
|
||||
*
|
||||
* @param map 提供数据的原始集合
|
||||
*/
|
||||
|
@@ -16,7 +16,8 @@ import javax.net.ssl.HostnameVerifier;
|
||||
import javax.net.ssl.SSLSession;
|
||||
|
||||
/**
|
||||
* https 域名校验,信任所有域名
|
||||
* https 域名校验,信任所有域名<br>
|
||||
* 注意此类慎用,信任全部可能会有中间人攻击风险
|
||||
*
|
||||
* @author Looly
|
||||
*/
|
||||
|
@@ -22,6 +22,8 @@ import java.security.cert.X509Certificate;
|
||||
* 继承{@link X509ExtendedTrustManager}的原因见:<br>
|
||||
* https://blog.csdn.net/ghaohao/article/details/79454913
|
||||
*
|
||||
* <p>注意此类慎用,信任全部可能会有中间人攻击风险。</p>
|
||||
*
|
||||
* @author Looly
|
||||
* @since 5.5.7
|
||||
*/
|
||||
|
Reference in New Issue
Block a user