Fix missing static on ChatColor.values

This commit is contained in:
md_5 2020-06-24 07:19:46 +10:00
parent d0fd673b60
commit 75af27acf1
No known key found for this signature in database
GPG Key ID: E8E901AC7C617C11

View File

@ -278,7 +278,7 @@ public final class ChatColor
* @deprecated holdover from when this class was an enum
*/
@Deprecated
public ChatColor[] values()
public static ChatColor[] values()
{
return BY_CHAR.values().toArray( new ChatColor[ BY_CHAR.values().size() ] );
}