diff --git a/Plugins/Mineplex.Core.Common/src/mineplex/core/common/util/LineFormat.java b/Plugins/Mineplex.Core.Common/src/mineplex/core/common/util/LineFormat.java new file mode 100644 index 000000000..8f5f7320e --- /dev/null +++ b/Plugins/Mineplex.Core.Common/src/mineplex/core/common/util/LineFormat.java @@ -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; + } +} \ No newline at end of file diff --git a/Plugins/Mineplex.Core.Common/src/mineplex/core/common/util/UtilText.java b/Plugins/Mineplex.Core.Common/src/mineplex/core/common/util/UtilText.java index c5a805558..86826296e 100644 --- a/Plugins/Mineplex.Core.Common/src/mineplex/core/common/util/UtilText.java +++ b/Plugins/Mineplex.Core.Common/src/mineplex/core/common/util/UtilText.java @@ -18,23 +18,6 @@ public class UtilText { private static HashMap _characters = new HashMap(); - public static enum LineFormat - { - LORE(200), CHAT(319); - - private int _length; - - private LineFormat(int length) - { - _length = length; - } - - public int getLength() - { - return _length; - } - } - static { try