1
1
mirror of https://github.com/geekfrog/PermissionsTime.git synced 2025-09-06 11:06:58 +00:00

权限包功能

give功能
配置BUG修复
This commit is contained in:
GeekFrog
2017-07-12 05:21:26 +08:00
parent d0e3e86377
commit f00284314f
15 changed files with 334 additions and 97 deletions

View File

@ -5,6 +5,6 @@ import java.text.MessageFormat;
public class StrUtil {
public static String messageFormat(String src, Object... args){
return MessageFormat.format(src.replace("&", "§"), args);
return MessageFormat.format(src, args).replace("&", "§");
}
}