X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Ftterminal%2FDECCharacterSets.java;h=bca81bb701a8d82482c39fffa569da6bc33dba0a;hb=12b90437b5f22c2ae6e9b9b14c3b62b60f6143e5;hp=0371f70a789233fde5533d012c6c2869f9cb2b22;hpb=e16dda65585466c8987bd1efd718431450a96605;p=fanfix.git diff --git a/src/jexer/tterminal/DECCharacterSets.java b/src/jexer/tterminal/DECCharacterSets.java index 0371f70..bca81bb 100644 --- a/src/jexer/tterminal/DECCharacterSets.java +++ b/src/jexer/tterminal/DECCharacterSets.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2016 Kevin Lamonte + * Copyright (C) 2019 Kevin Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -34,11 +34,9 @@ package jexer.tterminal; */ public final class DECCharacterSets { - /** - * Private constructor prevents accidental creation of this class. - */ - private DECCharacterSets() { - } + // ------------------------------------------------------------------------ + // Constants -------------------------------------------------------------- + // ------------------------------------------------------------------------ /** * US - Normal "international" (ASCII). @@ -370,4 +368,14 @@ public final class DECCharacterSets { 0x2084, 0x2085, 0x2086, 0x2087, 0x2088, 0x2089, 0x00B6, 0x0020 }; + // ------------------------------------------------------------------------ + // Constructors ----------------------------------------------------------- + // ------------------------------------------------------------------------ + + /** + * Private constructor prevents accidental creation of this class. + */ + private DECCharacterSets() { + } + }