System.getProperty("file.separator")
.toCharArray()[0]) + ".class");
_create(tempFile.getAbsoluteFile());
OutputStream streamOut = new JasminOutputStream(
new FileOutputStream(tempFile));
PrintWriter writerOut = new PrintWriter(new OutputStreamWriter(
streamOut));
if (cl.containsBafBody()) {
new soot.baf.JasminClass(cl).print(writerOut);
} else {
new soot.jimple.JasminClass(cl).print(writerOut);
}
writerOut.flush();
streamOut.close();
} catch (IOException e) {
e.printStackTrace();
throw new RuntimeException("Could not produce new classfile! (" + e
+ ")");