JAL-1807 disambiguated method signatures with numeric primitive args
[jalview.git] / src / jalview / appletgui / RotatableCanvas.java
index 377186a..6668849 100755 (executable)
@@ -470,10 +470,10 @@ public class RotatableCanvas extends Panel implements MouseListener,
     for (int i = 0; i < npoint; i++)
     {
       SequencePoint sp = (SequencePoint) points.elementAt(i);
-      Format.print(System.out, "%5d ", i);
+      Format.printLong(System.out, "%5d ", i);
       for (int j = 0; j < 3; j++)
       {
-        Format.print(System.out, "%13.3f  ", sp.coord[j]);
+        Format.printDouble(System.out, "%13.3f  ", sp.coord[j]);
       }
       System.out.println();
     }