Merge commit '77d3a60869e7a780c6ae069e51530e1eacece5e2'
[nikiroo-utils.git] / src / jexer / tterminal / DECCharacterSets.java
index 0371f70a789233fde5533d012c6c2869f9cb2b22..bca81bb701a8d82482c39fffa569da6bc33dba0a 100644 (file)
@@ -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() {
+    }
+
 }