1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-09-25 13:49:12 +02:00

Cleanup various aspects of code, fix some formatting, more netbeans 7.4 stuff

This commit is contained in:
Iaccidentally
2013-11-06 21:22:32 -05:00
parent 5415207c88
commit f056d430c4
65 changed files with 432 additions and 443 deletions

View File

@@ -34,7 +34,7 @@ public class ChatStore
return type;
}
public String getLongType()
public final String getLongType()
{
return type.length() == 0 ? "chat" : "chat-" + type;
}

View File

@@ -5,7 +5,6 @@ import net.ess3.api.IEssentials;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentSkipListMap;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.bukkit.event.player.AsyncPlayerChatEvent;

View File

@@ -12,8 +12,8 @@ import org.bukkit.event.player.AsyncPlayerChatEvent;
public abstract class EssentialsChatPlayer implements Listener
{
protected transient IEssentials ess;
protected final static Logger logger = Logger.getLogger("Minecraft");
protected transient IEssentials ess;
protected final transient Server server;
protected final transient Map<AsyncPlayerChatEvent, ChatStore> chatStorage;