Skip to content

Commit

Permalink
Removed the unneeded catching of CDKException
Browse files Browse the repository at this point in the history
Change-Id: Ie571fefc7e93903c13c74914bda4593b35ac7208
  • Loading branch information
egonw committed Apr 1, 2012
1 parent 171c06b commit 9fbf219
Showing 1 changed file with 1 addition and 7 deletions.
Expand Up @@ -93,13 +93,7 @@ public class PubchemFingerprinter implements IFingerprinter {

private SMARTSQueryTool sqt;
public PubchemFingerprinter() {
try {
sqt = new SMARTSQueryTool("C");
} catch (CDKException e) {
// bad practice but, the above initialization
// will never fail so we don't bother throwing
// the exception
}
sqt = new SMARTSQueryTool("C");
m_bits = new byte[(FP_SIZE + 7) >> 3];
}

Expand Down

0 comments on commit 9fbf219

Please sign in to comment.