Skip to content

Commit

Permalink
Removed some dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Aug 28, 2015
1 parent 3398981 commit c53eac9
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,6 @@ public CMLBond cdkBondToCMLBond(IBond cdkBond) {
private void writeProperties(IChemObject object, CMLElement cmlElement) {
Map<Object, Object> props = object.getProperties();
Iterator<Object> keys = props.keySet().iterator();
CMLElement propList = null;
while (keys.hasNext()) {
Object key = keys.next();
if (key instanceof DictRef) {
Expand All @@ -756,9 +755,6 @@ private void writeProperties(IChemObject object, CMLElement cmlElement) {
}
}
}
if (propList != null) {
cmlElement.appendChild(propList);
}
}

private void mapFractionalCoordsToCML(CMLAtom cmlAtom, IAtom cdkAtom) {
Expand Down

0 comments on commit c53eac9

Please sign in to comment.