JAL-3210 Improvements to eclipse detection. New src tree and SwingJS updated from...
[jalview.git] / src / jalview / datamodel / ResidueCount.java
index 74eb887..bb604d0 100644 (file)
@@ -76,9 +76,10 @@ public class ResidueCount
    * fast lookup tables holding the index into our count
    * arrays of each symbol; index 0 is reserved for gap counting
    */
-  private static int[] NUC_INDEX = new int[26];
+  private final static int[] NUC_INDEX = new int[26];
+
+  private final static int[] AA_INDEX = new int[26];
 
-  private static int[] AA_INDEX = new int[26];
   static
   {
     for (int i = 0; i < NUCS.length(); i++)