fix random text pool

This commit is contained in:
Timi
2026-06-08 19:17:45 +08:00
parent 801a945991
commit 4162b75de9

View File

@@ -19,7 +19,7 @@ public class Text {
public static String NUMBER_POOL = "0123456789";
public static String LETTER_NUMBER_POOL = LETTER_POOL + LETTER_POOL;
public static String LETTER_NUMBER_POOL = LETTER_POOL + NUMBER_POOL;
public static String PASSWORD_CHAR_POOL = LETTER_NUMBER_POOL + "!#$%&()*+,-./:;<=>?@[]^_`{|}~";