Remove redundancy from Eclipse
authoramwaterhouse <Andrew Waterhouse>
Fri, 30 Sep 2005 17:18:41 +0000 (17:18 +0000)
committeramwaterhouse <Andrew Waterhouse>
Fri, 30 Sep 2005 17:18:41 +0000 (17:18 +0000)
src/MCview/PDBChain.java
src/MCview/PDBfile.java
src/MCview/rotCanvas.java

index 4bfe255..192156e 100755 (executable)
@@ -93,7 +93,7 @@ public class PDBChain {
 \r
         for (int i = 0; i < atoms.size(); i++) {\r
             myAtom tmp = (myAtom) atoms.elementAt(i);\r
-            String resName = tmp.resName;\r
+            //String resName = tmp.resName;\r
             int resNumber = tmp.resNumber;\r
             int res = resNumber;\r
 \r
@@ -162,7 +162,7 @@ public class PDBChain {
                 } else if (b.at1.resName.toUpperCase().equals("CYS")) {\r
                     b.startCol = Color.yellow;\r
                 } else {\r
-                    int atno = ((Integer) ResidueProperties.getAA3Hash().get(b.at1.resName.toUpperCase())).intValue();\r
+                    //int atno = ((Integer) ResidueProperties.getAA3Hash().get(b.at1.resName.toUpperCase())).intValue();\r
                     b.startCol = Color.lightGray;\r
                 }\r
 \r
@@ -175,7 +175,7 @@ public class PDBChain {
                 } else if (b.at2.resName.toUpperCase().equals("CYS")) {\r
                     b.endCol = Color.yellow;\r
                 } else {\r
-                    int atno = ((Integer) ResidueProperties.getAA3Hash().get(b.at2.resName.toUpperCase())).intValue();\r
+                    //int atno = ((Integer) ResidueProperties.getAA3Hash().get(b.at2.resName.toUpperCase())).intValue();\r
                     b.endCol = Color.lightGray;\r
                 }\r
             } catch (Exception e) {\r
index 71d8c11..f97216b 100755 (executable)
@@ -152,14 +152,4 @@ public class PDBfile extends jalview.io.FileParse {
             ((PDBChain) chains.elementAt(i)).setChainColours();\r
         }\r
     }\r
-\r
-    public static void main(String[] args) {\r
-        try {\r
-            PDBfile pdb = new PDBfile("enkp1.pdb", "File");\r
-        } catch (IOException e) {\r
-            System.out.println(e);\r
-            e.printStackTrace();\r
-            System.exit(0);\r
-        }\r
-    }\r
 }\r
index bab7624..be14db8 100755 (executable)
@@ -606,12 +606,12 @@ public class rotCanvas extends JPanel implements KeyListener, MouseListener,
     }\r
 \r
     public void mouseReleased(MouseEvent evt) {\r
-        int x = evt.getX();\r
-        int y = evt.getY();\r
+        //int x = evt.getX();\r
+        //int y = evt.getY();\r
 \r
-        if (!dragging) {\r
-            myAtom tmp = findAtom(x, y);\r
-        }\r
+        //if (!dragging) {\r
+          //  myAtom tmp = findAtom(x, y);\r
+        //}\r
 \r
         drawLabels();\r
 \r