add null ignore for CollectorUtil

This commit is contained in:
Looly
2022-01-15 13:30:44 +08:00
parent 05ebfb44a9
commit 4b44716b5f
2 changed files with 2 additions and 1 deletions

View File

@@ -12,6 +12,7 @@
* 【json 】 JSONGetter增加getBeanList方法 * 【json 】 JSONGetter增加getBeanList方法
* 【core 】 ObjectUtil 添加三个defaultIfXxxx方法用于节省CPU及内存损耗(pr#2094@Github) * 【core 】 ObjectUtil 添加三个defaultIfXxxx方法用于节省CPU及内存损耗(pr#2094@Github)
* 【db 】 增加单条数据原生upsert语义支持(pr#501@Gitee) * 【db 】 增加单条数据原生upsert语义支持(pr#501@Gitee)
* 【core 】 在CollectorUtil提交Collectors.toMap的对null友好实现避免NPE(pr#502@Gitee)
* *
### 🐞Bug修复 ### 🐞Bug修复
* 【core 】 修复setter重载导致匹配错误issue#2082@Github * 【core 】 修复setter重载导致匹配错误issue#2082@Github

View File

@@ -18,7 +18,7 @@ import java.util.stream.Collector;
/** /**
* 可变的汇聚操作{@link Collector} 相关工具封装 * 可变的汇聚操作{@link Collector} 相关工具封装
* *
* @author looly * @author looly, VampireAchao
* @since 5.6.7 * @since 5.6.7
*/ */
public class CollectorUtil { public class CollectorUtil {