Skip to content

Commit

Permalink
Remove unused ZORders
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmay committed Jan 10, 2019
1 parent 050f7db commit dfd6f28
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ public class PMPReader extends DefaultChemObjectReader {
/* Keep an index of PMP id -> AtomCountainer id */
private Map<Integer, Integer> atomids = new Hashtable<>();
private Map<Integer, Integer> atomGivenIds = new Hashtable<>();
private Map<Integer, Integer> atomZOrders = new Hashtable<>();
private Map<Integer, Integer> bondids = new Hashtable<>();
private Map<Integer, Integer> bondAtomOnes = new Hashtable<>();
private Map<Integer, Integer> bondAtomTwos = new Hashtable<>();
Expand Down Expand Up @@ -241,8 +240,6 @@ private IChemFile readChemFile(IChemFile chemFile) {
}
if (chemObject instanceof IAtom) {
atomids.put(id, modelStructure.getAtomCount());
atomZOrders.put(Integer.valueOf((String) chemObject.getProperty(PMP_ZORDER)),
id);
atomGivenIds.put(Integer.valueOf((String) chemObject.getProperty(PMP_ID)),
id);
modelStructure.addAtom((IAtom) chemObject);
Expand Down

0 comments on commit dfd6f28

Please sign in to comment.