JAL-4059 update Jmol and JSmol to 15.2.69 - revised Jalview classes interating with...
[jalview.git] / src / mc_view / Zsort.java
index a2080eb..96cd16b 100755 (executable)
@@ -49,7 +49,7 @@ public class Zsort
 
   private int partition(Vector<Bond> bonds, int p, int r)
   {
-    float x = bonds.elementAt(p).start[2];
+    double x = bonds.elementAt(p).start[2];
     int i = p - 1;
     int j = r + 1;
     Bond tmp;