JAL-1745, JAL-1717 improvement to ensure cached PDB entries are unique within a seque...
[jalview.git] / src / jalview / datamodel / PDBEntry.java
index 36ffdf3..db792e2 100755 (executable)
@@ -55,10 +55,7 @@ public class PDBEntry
       return true;
     }
     PDBEntry o = (PDBEntry) obj;
-    return /*
-            * (file == o.file || (file != null && o.file != null && o.file
-            * .equals(file))) &&
-            */
+    return
     (type == o.type || (type != null && o.type != null && o.type
                     .equals(type)))
             && (id == o.id || (id != null && o.id != null && o.id
@@ -69,6 +66,7 @@ public class PDBEntry
             && (properties == o.properties || (properties != null
                     && o.properties != null && properties
                       .equals(o.properties)));
+    
   }
 
   /**