Merge branch 'develop' into Release_2_9_Branch
[jalview.git] / src / MCview / Bond.java
index 1f2edd2..9a8c614 100755 (executable)
@@ -1,6 +1,6 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
- * Copyright (C) $$Year-Rel$$ The Jalview Authors
+ * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9)
+ * Copyright (C) 2015 The Jalview Authors
  * 
  * This file is part of Jalview.
  * 
@@ -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;