Skip to content

Commit

Permalink
MiniText from paperMC
Browse files Browse the repository at this point in the history
  • Loading branch information
divios committed Jan 13, 2022
1 parent 3a13ba5 commit 47665ea
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ public miniTextParser() {
}

public String parse(final String s) {
if (builder != null) return s;
if (builder == null) return s;
return LegacyComponentSerializer.legacyAmpersand().serialize(
builder.parse(s));
}

public String unParse(final String s) {
if (builder != null) return null;
if (builder == null) return null;
return null;
}

Expand Down

0 comments on commit 47665ea

Please sign in to comment.