From 22ca2cbd4ac309fc33ebc538c6720b1bf0c14aa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Pl=C3=BCmicke?= Date: Tue, 8 May 2018 11:28:24 +0200 Subject: [PATCH] modified: BytecodeGenMethod.java --- src/de/dhbwstuttgart/bytecode/BytecodeGenMethod.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/de/dhbwstuttgart/bytecode/BytecodeGenMethod.java b/src/de/dhbwstuttgart/bytecode/BytecodeGenMethod.java index 6556d364..7cfd8e7d 100644 --- a/src/de/dhbwstuttgart/bytecode/BytecodeGenMethod.java +++ b/src/de/dhbwstuttgart/bytecode/BytecodeGenMethod.java @@ -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");