JAL-1807 disambiguated method signatures with numeric primitive args
[jalview.git] / src / jalview / analysis / AlignSeq.java
index 5612133..f76e801 100755 (executable)
@@ -664,7 +664,7 @@ public class AlignSeq
 
     pid = pid / (aseq1.length - count) * 100;
     output = output.append(new Format("Percentage ID = %2.2f\n\n")
-            .form(pid));
+            .formDouble(pid));
 
     try
     {
@@ -707,7 +707,7 @@ public class AlignSeq
           Format.print(System.out, "%3s", s1str.substring(i, i + 1));
         }
 
-        Format.print(System.out, "%3d ", mat[i][j] / 10);
+        Format.printLong(System.out, "%3d ", mat[i][j] / 10);
       }
 
       System.out.println();