Skip to content

Commit

Permalink
Removed output to STDOUT
Browse files Browse the repository at this point in the history
Signed-off-by: Rajarshi  Guha <rajarshi.guha@gmail.com>
  • Loading branch information
egonw authored and rajarshi committed Feb 26, 2010
1 parent 677b3f6 commit 14e1d12
Showing 1 changed file with 0 additions and 7 deletions.
Expand Up @@ -262,13 +262,6 @@ public class UniversalIsomorphismTesterTest extends CDKTestCase
// CDKHueckelAromaticityDetector.detectAromaticity(mol1);
Iterator<IAtom> atoms = mol1.atoms().iterator();
int i= 1;
while (atoms.hasNext()) {
IAtom nextAtom = atoms.next();
System.out.println(i + ": " + nextAtom.getSymbol() +
" T:" + nextAtom.getAtomTypeName() +
" A:" + nextAtom.getFlag(CDKConstants.ISAROMATIC));
i++;
}
AtomContainerManipulator.percieveAtomTypesAndConfigureAtoms(mol2);
Assert.assertTrue(CDKHueckelAromaticityDetector.detectAromaticity(mol2));
list = UniversalIsomorphismTester.getOverlaps(mol1, mol2);
Expand Down

0 comments on commit 14e1d12

Please sign in to comment.