diff options
author | KHobbits <rob@khobbits.co.uk> | 2011-11-18 18:33:22 +0000 |
---|---|---|
committer | KHobbits <rob@khobbits.co.uk> | 2011-11-18 18:33:22 +0000 |
commit | 2e0fb159523be08b261f9ee2b4fccf8283452bf5 (patch) | |
tree | 0f0346f223a02ad303fbb0600f2838201f206166 /EssentialsXMPP/src/com | |
parent | 11f02fb947180278aa39a1402e76f88ad9f1d25c (diff) | |
download | Essentials-2e0fb159523be08b261f9ee2b4fccf8283452bf5.tar Essentials-2e0fb159523be08b261f9ee2b4fccf8283452bf5.tar.gz Essentials-2e0fb159523be08b261f9ee2b4fccf8283452bf5.tar.lz Essentials-2e0fb159523be08b261f9ee2b4fccf8283452bf5.tar.xz Essentials-2e0fb159523be08b261f9ee2b4fccf8283452bf5.zip |
More code cleanup.
Diffstat (limited to 'EssentialsXMPP/src/com')
-rw-r--r-- | EssentialsXMPP/src/com/earth2me/essentials/xmpp/XMPPManager.java | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/EssentialsXMPP/src/com/earth2me/essentials/xmpp/XMPPManager.java b/EssentialsXMPP/src/com/earth2me/essentials/xmpp/XMPPManager.java index cbe89f9d6..a5daa263d 100644 --- a/EssentialsXMPP/src/com/earth2me/essentials/xmpp/XMPPManager.java +++ b/EssentialsXMPP/src/com/earth2me/essentials/xmpp/XMPPManager.java @@ -5,27 +5,14 @@ import com.earth2me.essentials.EssentialsConf; import com.earth2me.essentials.IConf; import com.earth2me.essentials.IUser; import java.io.File; -import java.util.ArrayList; -import java.util.Collections; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Set; +import java.util.*; import java.util.logging.Handler; import java.util.logging.Level; import java.util.logging.LogRecord; import java.util.logging.Logger; import org.bukkit.entity.Player; -import org.bukkit.plugin.java.JavaPlugin; -import org.jivesoftware.smack.Chat; -import org.jivesoftware.smack.ChatManager; -import org.jivesoftware.smack.ChatManagerListener; -import org.jivesoftware.smack.ConnectionConfiguration; -import org.jivesoftware.smack.MessageListener; import org.jivesoftware.smack.Roster.SubscriptionMode; -import org.jivesoftware.smack.XMPPConnection; -import org.jivesoftware.smack.XMPPException; +import org.jivesoftware.smack.*; import org.jivesoftware.smack.packet.Message; import org.jivesoftware.smack.packet.Presence; import org.jivesoftware.smack.util.StringUtils; |