1
mirror of https://github.com/CarmJos/EasyPlugin.git synced 2026-06-04 16:48:16 +08:00

修改builder访问限制

This commit is contained in:
2022-02-25 22:30:27 +08:00
parent 47018fbf7d
commit f4292e761a
2 changed files with 8 additions and 8 deletions
@@ -7,11 +7,11 @@ import java.util.Arrays;
public class EasyMessageBuilder {
String content;
String[] params;
protected String content;
protected String[] params;
@Nullable String paramPrefix = "%(";
@Nullable String paramSuffix = ")";
protected @Nullable String paramPrefix = "%(";
protected @Nullable String paramSuffix = ")";
public EasyMessageBuilder() {
}
@@ -7,11 +7,11 @@ import java.util.Arrays;
public class EasyMessageListBuilder {
String[] contents;
String[] params;
protected String[] contents;
protected String[] params;
@Nullable String paramPrefix = "%(";
@Nullable String paramSuffix = ")";
protected @Nullable String paramPrefix = "%(";
protected @Nullable String paramSuffix = ")";
public EasyMessageListBuilder() {
}