X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2FMCview%2FAtom.java;fp=src%2FMCview%2FAtom.java;h=9cbcebb004f3b992cd829f2a5594528e7aca2adf;hb=8647c805617f33b905c4f72ebe30aab3c21b56f4;hp=b600bc96d378d248637269f87dc88a83e9716686;hpb=ad15cff29620f960119f80176f1fd443da9f6763;p=jalview.git diff --git a/src/MCview/Atom.java b/src/MCview/Atom.java index b600bc9..9cbcebb 100755 --- a/src/MCview/Atom.java +++ b/src/MCview/Atom.java @@ -20,7 +20,7 @@ */ package MCview; -import java.awt.*; +import java.awt.Color; public class Atom { @@ -77,16 +77,16 @@ public class Atom chain = str.substring(21, 22); resNumber = Integer.parseInt(str.substring(22, 26).trim()); - resNumIns = str.substring(22, 27); + resNumIns = str.substring(22, 27).trim(); insCode = str.substring(26, 27).charAt(0); - this.x = (float) (new Float(str.substring(30, 38).trim()).floatValue()); - this.y = (float) (new Float(str.substring(38, 46).trim()).floatValue()); - this.z = (float) (new Float(str.substring(47, 55).trim()).floatValue()); + this.x = (new Float(str.substring(30, 38).trim()).floatValue()); + this.y = (new Float(str.substring(38, 46).trim()).floatValue()); + this.z = (new Float(str.substring(47, 55).trim()).floatValue()); // optional entries - see JAL-730 String tm = str.substring(54, 60).trim(); if (tm.length() > 0) { - occupancy = (float) (new Float(tm)).floatValue(); + occupancy = (new Float(tm)).floatValue(); } else { @@ -96,7 +96,7 @@ public class Atom tm = str.substring(60, 66).trim(); if (tm.length() > 0) { - tfactor = (float) (new Float(tm).floatValue()); + tfactor = (new Float(tm).floatValue()); } else {