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:
@@ -34,7 +34,7 @@ public class ChatStore
|
||||
return type;
|
||||
}
|
||||
|
||||
public String getLongType()
|
||||
public final String getLongType()
|
||||
{
|
||||
return type.length() == 0 ? "chat" : "chat-" + type;
|
||||
}
|
||||
|
@@ -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;
|
||||
|
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user