Move LineFormat.java
This commit is contained in:
parent
4cfa7c436b
commit
3cd187ff04
@ -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;
|
||||||
|
}
|
||||||
|
}
|
@ -18,23 +18,6 @@ public class UtilText
|
|||||||
{
|
{
|
||||||
private static HashMap<Character, Integer> _characters = new HashMap<Character, Integer>();
|
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
|
static
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
|
Loading…
Reference in New Issue
Block a user