From 7070c73dbfeffc827b5ef868f8483310466f219b Mon Sep 17 00:00:00 2001 From: xuyang Date: Thu, 31 Jul 2025 14:53:44 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=96=B9=E6=B3=95=E6=B3=A8=E9=87=8A):?= =?UTF-8?q?=E6=96=B9=E6=B3=95=E6=B3=A8=E9=87=8A=E9=94=99=E8=AF=AF=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/cn/hutool/core/collection/CollUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hutool-core/src/main/java/cn/hutool/core/collection/CollUtil.java b/hutool-core/src/main/java/cn/hutool/core/collection/CollUtil.java index 0fc4adbf8..05e0d78d9 100755 --- a/hutool-core/src/main/java/cn/hutool/core/collection/CollUtil.java +++ b/hutool-core/src/main/java/cn/hutool/core/collection/CollUtil.java @@ -469,7 +469,7 @@ public class CollUtil { * * @param collection 集合 * @param value 需要查找的值 - * @return 果集合为空(null或者空),返回{@code false},否则找到元素返回{@code true} + * @return 如果集合为空(null或者空),返回{@code false},否则找到元素返回{@code true} * @since 5.7.16 */ public static boolean safeContains(Collection collection, Object value) {