1
0
mirror of https://github.com/Zrips/Jobs.git synced 2024-11-29 14:05:25 +01:00

Update ChatColor.java

This commit is contained in:
montlikadani 2018-08-16 17:49:51 +02:00 committed by GitHub
parent 459bfdfefb
commit f7efd20525
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,9 +43,9 @@ public enum ChatColor {
private final char code;
private final int intCode;
private final String toString;
private final static Map<Integer, ChatColor> intMap = new HashMap<Integer, ChatColor>();
private final static Map<Character, ChatColor> charMap = new HashMap<Character, ChatColor>();
private final static Map<String, ChatColor> stringMap = new HashMap<String, ChatColor>();
private final static Map<Integer, ChatColor> intMap = new HashMap<>();
private final static Map<Character, ChatColor> charMap = new HashMap<>();
private final static Map<String, ChatColor> stringMap = new HashMap<>();
private ChatColor(char code, int intCode) {
this.code = code;