X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fbits%2FGraphicsChars.java;h=b571639a0384d4e73fdbb8313da22e55c49f994b;hb=d36057dfab8def933a64be042b039d76708ac5ba;hp=32403090a4301a0ce800b1dfe1fe3668cd335b20;hpb=eb29bbb5ec70c43895dd0f053630c7e3cd402cba;p=fanfix.git diff --git a/src/jexer/bits/GraphicsChars.java b/src/jexer/bits/GraphicsChars.java index 3240309..b571639 100644 --- a/src/jexer/bits/GraphicsChars.java +++ b/src/jexer/bits/GraphicsChars.java @@ -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() { + } + }