X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2FMCview%2FBond.java;h=195d3c73805d544dfd8b4e97f2b0f268805eee9d;hb=c19d2a91ca05e052e3408bf5852d88eb5d0608f1;hp=1f2edd2f013064af70a382beedf580a26abb404d;hpb=c777b335d0332979123446f431b7f0c160eb4880;p=jalview.git diff --git a/src/MCview/Bond.java b/src/MCview/Bond.java index 1f2edd2..195d3c7 100755 --- a/src/MCview/Bond.java +++ b/src/MCview/Bond.java @@ -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.0b2) + * 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;