We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b93cc7 commit 1999323Copy full SHA for 1999323
src/main/java/mods/Hileb/shotaasm/impl/ShotaCompiler.java
@@ -30,7 +30,7 @@ public Runnable compile(ScriptFile file) {
30
.append("import org.objectweb.asm.commons.*;")
31
.append("import org.objectweb.asm.signature.*;")
32
.append("import static org.objectweb.asm.Opcodes.*;")
33
- .append("public ").append(singleName).append(" implements Runnable { ")
+ .append("public class ").append(singleName).append(" implements Runnable { ")
34
.append(" public void run() { ")
35
.append(file.text())
36
.append("}}");
0 commit comments