Get everything compiling and Checkstyle clean

This commit is contained in:
Andrew Steinborn
2020-06-28 23:20:46 -04:00
parent c2edd82b16
commit 70698246bf
3 changed files with 16 additions and 3 deletions

View File

@@ -12,6 +12,12 @@ public class AdventureCompat {
throw new AssertionError("Do not create instances of this class.");
}
/**
* Converts an {@link net.kyori.text.Component} component into an adventure
* {@link net.kyori.adventure.text.Component} component.
* @param component the component to translate
* @return the translated component
*/
public static net.kyori.adventure.text.Component asAdventureComponent(
net.kyori.text.Component component) {
String json = net.kyori.text.serializer.gson.GsonComponentSerializer.INSTANCE
@@ -20,6 +26,12 @@ public class AdventureCompat {
.deserialize(json);
}
/**
* Converts an {@link net.kyori.adventure.text.Component} component into an text
* {@link net.kyori.text.Component} component.
* @param component the component to translate
* @return the translated component
*/
public static net.kyori.text.Component asOriginalTextComponent(
net.kyori.adventure.text.Component component) {
String json = net.kyori.adventure.text.serializer.gson.GsonComponentSerializer