Merge branch 'develop' into features/JAL-1705_ensembl
[jalview.git] / src / MCview / Bond.java
index 1f2edd2..371ccd5 100755 (executable)
@@ -38,10 +38,8 @@ public class Bond
 
   public Bond(Atom at1, Atom at2)
   {
-    this.start = new float[]
-    { at1.x, at1.y, at1.z };
-    this.end = new float[]
-    { at2.x, at2.y, at2.z };
+    this.start = new float[] { at1.x, at1.y, at1.z };
+    this.end = new float[] { at2.x, at2.y, at2.z };
     this.startCol = at1.color;
     this.endCol = at2.color;
     this.at1 = at1;