Update hutool-core/src/main/java/org/dromara/hutool/core/collection/CollUtil.java

This commit is contained in:
emptypoint
2023-07-01 07:27:42 +00:00
committed by Gitee
parent 167dcf5d1c
commit 8e46171695

View File

@@ -2368,7 +2368,7 @@ public class CollUtil {
} }
/** /**
* 构多层集合 * 构多层集合
* 例如List<List<List<String>>> 解构成 List<String> * 例如List<List<List<String>>> 解构成 List<String>
* skipNull如果为true, 则解构后的集合里不包含null值为false则会包含null值。 * skipNull如果为true, 则解构后的集合里不包含null值为false则会包含null值。
* *