modified: BytecodeGenMethod.java

This commit is contained in:
Martin Plümicke 2018-05-08 11:28:24 +02:00
parent 49ea4ee283
commit 22ca2cbd4a

View File

@ -580,7 +580,7 @@ public class BytecodeGenMethod implements StatementVisitor {
try {
System.out.println("generating " + name + ".class file...");
output = new FileOutputStream(
new File(System.getProperty("user.dir") + "/testBytecode/generatedBC/examples/" + name + ".class"));
new File(System.getProperty("user.dir") + "/testBytecode/generatedBC/" + name + ".class"));
output.write(bytecode);
output.close();
System.out.println(name + ".class file generated");