Skip to content

Commit

Permalink
Allow compilation.
Browse files Browse the repository at this point in the history
Built okay the first time but jenkins doesn't like the Object -> double cast.
  • Loading branch information
John May committed Jul 18, 2014
1 parent b96318f commit 4c6d1d0
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -91,7 +91,7 @@ private final double[] AtomInChIToMMFF94PartialCharges(String InChI) {

// System.out.println(atom.getAtomTypeName() + " " +
// atom.getProperty("MMFF94charge").toString());
testResult[i] = atom.getProperty("MMFF94charge");
testResult[i] = atom.getProperty("MMFF94charge", Double.class);
i++;

}
Expand Down

0 comments on commit 4c6d1d0

Please sign in to comment.