User c23c5e9da4
08-11-2006 17:34:44
Marvin goes into an infinite loop on this piece of code (using jchem 3.2)
import chemaxon.formats.MolImporter;
import chemaxon.struc.Molecule;
public class MarvinCrash {
public static void main(String[] args) throws Exception {
Molecule m = MolImporter.importMol("n:1:*:*:*:*:1");
System.err.println("imported mol");
m.toObject("image:H_off,-a,w100,h100");
System.err.println("after toImage");
}
}
import chemaxon.formats.MolImporter;
import chemaxon.struc.Molecule;
public class MarvinCrash {
public static void main(String[] args) throws Exception {
Molecule m = MolImporter.importMol("n:1:*:*:*:*:1");
System.err.println("imported mol");
m.toObject("image:H_off,-a,w100,h100");
System.err.println("after toImage");
}
}