1
mirror of https://github.com/CarmJos/EasyPlugin.git synced 2026-06-05 00:58:17 +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 { public class EasyMessageBuilder {
String content; protected String content;
String[] params; protected String[] params;
@Nullable String paramPrefix = "%("; protected @Nullable String paramPrefix = "%(";
@Nullable String paramSuffix = ")"; protected @Nullable String paramSuffix = ")";
public EasyMessageBuilder() { public EasyMessageBuilder() {
} }
@@ -7,11 +7,11 @@ import java.util.Arrays;
public class EasyMessageListBuilder { public class EasyMessageListBuilder {
String[] contents; protected String[] contents;
String[] params; protected String[] params;
@Nullable String paramPrefix = "%("; protected @Nullable String paramPrefix = "%(";
@Nullable String paramSuffix = ")"; protected @Nullable String paramSuffix = ")";
public EasyMessageListBuilder() { public EasyMessageListBuilder() {
} }