Skip to content

Commit

Permalink
Hooked in iodine atom type detection
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Jul 23, 2011
1 parent 82a60f0 commit 3d4f7a5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/org/openscience/cdk/atomtype/CDKAtomTypeMatcher.java
Expand Up @@ -1172,6 +1172,8 @@ private IAtomType perceiveHalogens(IAtomContainer atomContainer, IAtom atom)
IAtomType type = getAtomType("F");
if (isAcceptable(atom, atomContainer, type)) return type;
}
} else if ("I".equals(atom.getSymbol())) {
return perceiveIodine(atomContainer, atom);
}

return null;
Expand Down

0 comments on commit 3d4f7a5

Please sign in to comment.