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

初始化

This commit is contained in:
GeekFrog
2017-07-06 18:17:54 +08:00
parent 19bb895634
commit 0f83a6c50c
14 changed files with 1132 additions and 0 deletions

View File

@ -0,0 +1,10 @@
package gg.frog.mc.permissionstime.utils;
import java.text.MessageFormat;
public class StrUtil {
public static String messageFormat(String src, Object... args){
return MessageFormat.format(src.replace("&", "§"), args);
}
}