New launcher class to start all 3 modes:
[jvcard.git] / src / be / nikiroo / jvcard / tui / UiColors.java
index 50c2bf4fafdb698d1d7dd5ac94f5bff99ae7857c..3fa83c7b9477f8f0fdde1b9a453add835dbbaa34 100644 (file)
@@ -22,7 +22,6 @@ public class UiColors {
 
        private ResourceBundle bundle = null;
        private Map<String, TextColor> colorMap = null;
-       private boolean utf = true;
 
        private UiColors() {
                colorMap = new HashMap<String, TextColor>();
@@ -86,25 +85,6 @@ public class UiColors {
                }
        }
 
-       /**
-        * Check if unicode characters should be used.
-        * 
-        * @return TRUE to allow unicode
-        */
-       public boolean isUnicode() {
-               return utf;
-       }
-
-       /**
-        * Allow or disallow unicode characters in the program.
-        * 
-        * @param utf
-        *            TRUE to allow unuciode, FALSE to only allow ASCII characters
-        */
-       public void setUnicode(boolean utf) {
-               this.utf = utf;
-       }
-
        /**
         * Create a new {@link Label} with the colours of the given {@link Element}.
         *