Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Updated the JavaDoc for an API changed a while ago: the getInChIToStr…
…ucture() method now takes an IChemObjectBuilder as second argument (fixes #3035890)

Signed-off-by: maclean <gilleain.torrance@gmail.com>
Signed-off-by: Rajarshi  Guha <rajarshi.guha@gmail.com>
  • Loading branch information
egonw authored and rajarshi committed Aug 15, 2010
1 parent 38873dc commit be56aac
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/org/openscience/cdk/inchi/InChIToStructure.java
Expand Up @@ -47,7 +47,9 @@
* <code>// Generate factory - throws CDKException if native code does not load</code><br>
* <code>InChIGeneratorFactory factory = new InChIGeneratorFactory();</code><br>
* <code>// Get InChIToStructure</code><br>
* <code>InChIToStructure intostruct = factory.getInChIToStructure(inchi);</code><br>
* <code>InChIToStructure intostruct = factory.getInChIToStructure(</code><br>
* <code> inchi, DefaultChemObjectBuilder.getInstance()</code><br>
* <code>);</code><br>
* <code></code><br>
* <code>INCHI_RET ret = intostruct.getReturnStatus();</code><br>
* <code>if (ret == INCHI_RET.WARNING) {</code><br>
Expand Down

0 comments on commit be56aac

Please sign in to comment.