From 5aa89d2092c4a74f0dba38b4973199e2fa2db885 Mon Sep 17 00:00:00 2001 From: Suomm <1474983351@qq.com> Date: Tue, 28 Nov 2023 21:38:08 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=B8=8D=E6=98=BE=E7=A4=BA=E6=95=B0?= =?UTF-8?q?=E7=BB=84=E4=B8=BA=E7=A9=BA=E5=BC=82=E5=B8=B8=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/mybatisflex/core/exception/FlexAssert.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mybatis-flex-core/src/main/java/com/mybatisflex/core/exception/FlexAssert.java b/mybatis-flex-core/src/main/java/com/mybatisflex/core/exception/FlexAssert.java index 59bd3a34..9c55d4c4 100644 --- a/mybatis-flex-core/src/main/java/com/mybatisflex/core/exception/FlexAssert.java +++ b/mybatis-flex-core/src/main/java/com/mybatisflex/core/exception/FlexAssert.java @@ -83,7 +83,7 @@ public final class FlexAssert { */ public static void notEmpty(T[] array, String param) { if (array == null || array.length == 0) { - throw FlexExceptions.wrap(param); + throw FlexExceptions.wrap(LocalizedFormats.ARRAY_NULL_OR_EMPTY, param); } }