JAL-2228 java 1.7 compliance
authorJim Procter <jprocter@issues.jalview.org>
Sun, 4 Jun 2017 15:12:13 +0000 (16:12 +0100)
committerJim Procter <jprocter@issues.jalview.org>
Sun, 4 Jun 2017 15:12:13 +0000 (16:12 +0100)
src/jalview/workers/ColumnCounterSetWorker.java

index b6b64fc..2422748 100644 (file)
@@ -191,10 +191,10 @@ class ColumnCounterSetWorker extends AlignCalcWorker
         int count = counts[i][anrow];
 
         Color color = ColorUtils.getGraduatedColour(count, 0, minColour,
-                  max[anrow], maxColour);
-          String str = String.valueOf(count);
-          anns[i] = new Annotation(str, str, '0', count, color);
-          rmax = Long.max(count, rmax);
+                max[anrow], maxColour);
+        String str = String.valueOf(count);
+        anns[i] = new Annotation(str, str, '0', count, color);
+        rmax = Math.max(count, rmax);
       }
 
       /*