Move LineFormat.java

This commit is contained in:
libraryaddict 2015-12-11 16:57:21 +13:00
parent 4cfa7c436b
commit 3cd187ff04
2 changed files with 18 additions and 17 deletions

View File

@ -0,0 +1,18 @@
package mineplex.core.common.util;
public enum LineFormat
{
LORE(200), CHAT(319);
private int _length;
private LineFormat(int length)
{
_length = length;
}
public int getLength()
{
return _length;
}
}

View File

@ -18,23 +18,6 @@ public class UtilText
{
private static HashMap<Character, Integer> _characters = new HashMap<Character, Integer>();
public static enum LineFormat
{
LORE(200), CHAT(319);
private int _length;
private LineFormat(int length)
{
_length = length;
}
public int getLength()
{
return _length;
}
}
static
{
try