get export working again, fix applet html, allow custom applet.html in

sketch
This commit is contained in:
benfry
2004-06-22 00:50:16 +00:00
parent 3bf36fe24c
commit 18df8dcd78
4 changed files with 29 additions and 13 deletions

View File

@@ -188,8 +188,8 @@ public class PdePreprocessor {
// output the code
//
PdeEmitter emitter = new PdeEmitter();
PrintStream stream = new PrintStream(
new FileOutputStream(buildPath + File.separator + name + ".java"));
File streamFile = new File(buildPath, name + ".java");
PrintStream stream = new PrintStream(new FileOutputStream(streamFile));
writeHeader(stream, extraImports, name);