Skip to content

Commit

Permalink
去除无效方法
Browse files Browse the repository at this point in the history
  • Loading branch information
0XPYEX0 committed Jun 18, 2023
1 parent 148d31a commit c5f14b9
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,6 @@ public static void loadClass(String className, byte[] bytes) {
}
}

public static boolean a(String name) {
return Pattern.compile("^[a-zA-Z0-9_\\u4e00-\\u9fa5]{3,16}$").matcher(name).matches();
}

public static boolean isAllowedInUnquotedString(char c) {
return ((c >= '0' && c <= '9') || (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || c == '_' || c == '-' || c == '.' || c == '+') || (c > '\u4e00' && c < '\u9fa5');
}

@Override
public void onDisable() {
Logging.info("已卸载");
Expand Down

0 comments on commit c5f14b9

Please sign in to comment.