diff --git a/chat/src/main/java/net/md_5/bungee/api/chat/BaseComponent.java b/chat/src/main/java/net/md_5/bungee/api/chat/BaseComponent.java index 5a3a543646..558343c338 100644 --- a/chat/src/main/java/net/md_5/bungee/api/chat/BaseComponent.java +++ b/chat/src/main/java/net/md_5/bungee/api/chat/BaseComponent.java @@ -255,7 +255,7 @@ public void setStyle(ComponentStyle style) * Set this component's color. *
* Warning: This should be a color, not formatting code (ie, - * {@link ChatColor#getColor()} should not be null). + * {@link ChatColor#color} should not be null). * * @param color the component color, or null to use the default */ diff --git a/chat/src/main/java/net/md_5/bungee/api/chat/ComponentStyle.java b/chat/src/main/java/net/md_5/bungee/api/chat/ComponentStyle.java index 7daaffa705..15f44ea730 100644 --- a/chat/src/main/java/net/md_5/bungee/api/chat/ComponentStyle.java +++ b/chat/src/main/java/net/md_5/bungee/api/chat/ComponentStyle.java @@ -20,7 +20,7 @@ public final class ComponentStyle implements Cloneable * The color of this style. *
* Warning: This should be a color, not formatting code (ie, - * {@link ChatColor#getColor()} should not be null). + * {@link ChatColor#color} should not be null). */ private ChatColor color; /**