diff --git a/src/main/java/bytecode/ByteCodeGenerator.java b/src/main/java/bytecode/ByteCodeGenerator.java index ed3d766..d2bcedd 100644 --- a/src/main/java/bytecode/ByteCodeGenerator.java +++ b/src/main/java/bytecode/ByteCodeGenerator.java @@ -13,16 +13,4 @@ public class ByteCodeGenerator { classCodeGen.generateClassCode(classDeclarationNode); } } - - private void printIntoClassFile(byte[] byteCode, String name) { - String filePath = "./classFileOutput/" + name + ".class"; - - try { - FileOutputStream fileOutputStream = new FileOutputStream(filePath); - fileOutputStream.write(byteCode); - fileOutputStream.close(); - } catch (IOException e) { - e.printStackTrace(); - } - } }