Skip to content

Commit

Permalink
Removed print to standard out from ChemObjectBuilders
Browse files Browse the repository at this point in the history
Change-Id: I6e69e8bab5781f67346fc9a33240c357d55ef01e
Signed-off-by: Egon Willighagen <egonw@users.sourceforge.net>
  • Loading branch information
johnmay authored and egonw committed Nov 1, 2012
1 parent c7786c9 commit ab6c308
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/main/org/openscience/cdk/DefaultChemObjectBuilder.java
Expand Up @@ -171,7 +171,6 @@ public <T extends ICDKObject>T newInstance(
} else if (clazz.isAssignableFrom(IMolecularFormula.class)) {
if (params.length == 0) return (T)new MolecularFormula();
} else if (clazz.isAssignableFrom(ITetrahedralChirality.class)) {
System.out.println(params.length);
if (params.length == 3 &&
params[0] instanceof IAtom &&
params[1] instanceof IAtom[] &&
Expand Down
Expand Up @@ -375,7 +375,6 @@ public <T extends ICDKObject>T newInstance(
params[0] instanceof IMolecularFormula)
return (T)new DebugAdductFormula((IMolecularFormula)params[0]);
} else if (clazz.isAssignableFrom(ITetrahedralChirality.class)) {
System.out.println(params.length);
if (params.length == 3 &&
params[0] instanceof IAtom &&
params[1] instanceof IAtom[] &&
Expand Down
Expand Up @@ -174,7 +174,6 @@ public <T extends ICDKObject>T newInstance(
params[0] instanceof IMolecularFormula)
return (T)new AdductFormula((IMolecularFormula)params[0]);
} else if (clazz.isAssignableFrom(ITetrahedralChirality.class)) {
System.out.println(params.length);
if (params.length == 3 &&
params[0] instanceof IAtom &&
params[1] instanceof IAtom[] &&
Expand Down

0 comments on commit ab6c308

Please sign in to comment.