JAL-1807 disambiguated method signatures with numeric primitive args
[jalview.git] / src / jalview / math / Matrix.java
index 9ac75d2..fb8d295 100755 (executable)
@@ -104,7 +104,7 @@ public class Matrix
     {
       for (int j = 0; j < cols; j++)
       {
-        Format.print(ps, "%8.2f", value[i][j]);
+        Format.printDouble(ps, "%8.2f", value[i][j]);
       }
 
       ps.println();
@@ -762,7 +762,7 @@ public class Matrix
   {
     for (int j = 0; j < rows; j++)
     {
-      Format.print(ps, "%15.4e", d[j]);
+      Format.printDouble(ps, "%15.4e", d[j]);
     }
   }
 
@@ -776,7 +776,7 @@ public class Matrix
   {
     for (int j = 0; j < rows; j++)
     {
-      Format.print(ps, "%15.4e", e[j]);
+      Format.printDouble(ps, "%15.4e", e[j]);
     }
   }