Removed moved method

This commit is contained in:
i22007 2024-05-08 13:44:41 +02:00
parent 3ac354b7dd
commit 56ce3c33c3

View File

@ -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();
}
}
}