Updated copyright info
[javainspect.git] / src / main / java / eu / svjatoslav / inspector / java / structure / Utils.java
index 41dc633..c6fe3f1 100755 (executable)
@@ -1,6 +1,6 @@
 /*
  * JavaInspect - Utility to visualize java software
- * Copyright (C) 2013-2015, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
+ * Copyright (C) 2013-2020, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of version 3 of the GNU Lesser General Public License
@@ -14,12 +14,12 @@ import java.util.List;
 
 public class Utils {
 
-    private static final List<String> systemDataTypes = new ArrayList<String>();
-    private static final List<String> commonObjectMethods = new ArrayList<String>();
-    private static final List<String> systemPackages = new ArrayList<String>();
-    private static final List<String> darkColors = new ArrayList<String>();
-    private static final List<String> lightColors = new ArrayList<String>();
-    private static final List<String> enumMethods = new ArrayList<String>();
+    private static final List<String> systemDataTypes = new ArrayList<>();
+    private static final List<String> commonObjectMethods = new ArrayList<>();
+    private static final List<String> systemPackages = new ArrayList<>();
+    private static final List<String> darkColors = new ArrayList<>();
+    private static final List<String> lightColors = new ArrayList<>();
+    private static final List<String> enumMethods = new ArrayList<>();
     private static int lastChosenDarkColor = -1;
     private static int lastChosenLightColor = -1;
 
@@ -96,7 +96,7 @@ public class Utils {
         lightColors.add("peachpuff2");
         lightColors.add("seagreen1");
         lightColors.add("violet");
-        lightColors.add("aqua");
+        lightColors.add("cyan");
         lightColors.add("orange");
     }