PMD code sweep, #6 don't add MyWindow twice to MyApplication
[fanfix.git] / src / jexer / bits / GraphicsChars.java
index 32403090a4301a0ce800b1dfe1fe3668cd335b20..b571639a0384d4e73fdbb8313da22e55c49f994b 100644 (file)
@@ -34,11 +34,9 @@ package jexer.bits;
  */
 public final class GraphicsChars {
 
-    /**
-     * Private constructor prevents accidental creation of this class.
-     */
-    private GraphicsChars() {
-    }
+    // ------------------------------------------------------------------------
+    // Constants --------------------------------------------------------------
+    // ------------------------------------------------------------------------
 
     /**
      * The CP437 to Unicode translation map.
@@ -147,4 +145,15 @@ public final class GraphicsChars {
     public static final char WINDOW_RIGHT_BOTTOM_DOUBLE = CP437[0xBC];
     public static final char VERTICAL_BAR               = CP437[0xB3];
     public static final char OCTOSTAR                   = CP437[0x0F];
+
+    // ------------------------------------------------------------------------
+    // Constructors -----------------------------------------------------------
+    // ------------------------------------------------------------------------
+
+    /**
+     * Private constructor prevents accidental creation of this class.
+     */
+    private GraphicsChars() {
+    }
+
 }