1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-29 09:19:51 +02:00

Move format methods from Util to FormatUtil

This commit is contained in:
snowleo
2012-09-02 19:41:30 +02:00
parent 3676881efd
commit 10b161ce09
32 changed files with 241 additions and 250 deletions

View File

@@ -9,6 +9,7 @@ import java.util.logging.Handler;
import java.util.logging.Level;
import java.util.logging.LogRecord;
import java.util.logging.Logger;
import net.ess3.utils.FormatUtil;
import org.bukkit.configuration.file.YamlConfiguration;
import org.bukkit.entity.Player;
import org.jivesoftware.smack.*;
@@ -60,7 +61,7 @@ public final class XMPPManager extends Handler implements MessageListener, ChatM
disconnect();
connect();
}
chat.sendMessage(Util.stripFormat(message));
chat.sendMessage(FormatUtil.stripFormat(message));
return true;
}
}