Further code cleanup

This commit is contained in:
Magnus Ulf
2019-05-06 11:08:28 +02:00
parent 51135db452
commit a6af3c69c8
11 changed files with 11 additions and 22 deletions

View File

@@ -12,7 +12,7 @@ public abstract class ChatTag extends ChatActive
// -------------------------------------------- //
private final static Map<String, ChatTag> idToTag = new MassiveMap<>();
public static ChatTag getTag(String tagId) { return (ChatTag) idToTag.get(tagId); }
public static ChatTag getTag(String tagId) { return idToTag.get(tagId); }
// -------------------------------------------- //
// CONSTRUCT