From 464b87c9c7789bc142538bc146ecfe4358c12a50 Mon Sep 17 00:00:00 2001 From: Charles7c Date: Sun, 17 Nov 2024 19:21:13 +0800 Subject: [PATCH] =?UTF-8?q?refactor(core):=20=E5=A2=9E=E5=8A=A0=20+=20?= =?UTF-8?q?=E5=8F=B7=E5=AD=97=E7=AC=A6=E4=B8=B2/=E5=AD=97=E7=AC=A6?= =?UTF-8?q?=E5=B8=B8=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../starter/core/constant/CharConstants.java | 15 ++++++++++----- .../starter/core/constant/StringConstants.java | 15 ++++++++++----- 2 files changed, 20 insertions(+), 10 deletions(-) diff --git a/continew-starter-core/src/main/java/top/continew/starter/core/constant/CharConstants.java b/continew-starter-core/src/main/java/top/continew/starter/core/constant/CharConstants.java index d19e2b71..e6b5d058 100644 --- a/continew-starter-core/src/main/java/top/continew/starter/core/constant/CharConstants.java +++ b/continew-starter-core/src/main/java/top/continew/starter/core/constant/CharConstants.java @@ -76,6 +76,16 @@ public class CharConstants { */ public static final char DASHED = '-'; + /** + * 加号 {@code '+'} + */ + public static final char PLUS = '+'; + + /** + * 等号 {@code '='} + */ + public static final char EQUALS = '='; + /** * 星号 {@code '*'} */ @@ -146,11 +156,6 @@ public class CharConstants { */ public static final char SINGLE_QUOTE = '\''; - /** - * 等号 {@code '='} - */ - public static final char EQUALS = '='; - /** * 回车符 {@code '\r'} */ diff --git a/continew-starter-core/src/main/java/top/continew/starter/core/constant/StringConstants.java b/continew-starter-core/src/main/java/top/continew/starter/core/constant/StringConstants.java index 340378fa..624bd9b9 100644 --- a/continew-starter-core/src/main/java/top/continew/starter/core/constant/StringConstants.java +++ b/continew-starter-core/src/main/java/top/continew/starter/core/constant/StringConstants.java @@ -94,6 +94,16 @@ public class StringConstants { */ public static final String DASHED = "-"; + /** + * 加号 {@code "+"} + */ + public static final String PLUS = "+"; + + /** + * 等号 {@code "="} + */ + public static final String EQUALS = "="; + /** * 星号 {@code "*"} */ @@ -164,11 +174,6 @@ public class StringConstants { */ public static final String SINGLE_QUOTE = "'"; - /** - * 等号 {@code "="} - */ - public static final String EQUALS = "="; - /** * 回车符 {@code "\r"} */