From: amwaterhouse Date: Wed, 16 Nov 2005 16:40:40 +0000 (+0000) Subject: no need for myAtom X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=1d88ffbd661ea87e925492a1ae0e467962477a3c;p=jalview.git no need for myAtom --- diff --git a/src/MCview/Bond.java b/src/MCview/Bond.java index 17f66bb..e3f36f7 100755 --- a/src/MCview/Bond.java +++ b/src/MCview/Bond.java @@ -26,10 +26,10 @@ public class Bond { float[] end; Color startCol; Color endCol; - public myAtom at1; - public myAtom at2; + public Atom at1; + public Atom at2; - public Bond(float[] start, float[] end, myAtom at1, myAtom at2) { + public Bond(float[] start, float[] end, Atom at1, Atom at2) { this.start = start; this.end = end; this.startCol = at1.color;