diff --git a/src/main/java/me/topchetoeu/jscript/common/Instruction.java b/src/main/java/me/topchetoeu/jscript/common/Instruction.java index 9b4cc65..f7d38ad 100644 --- a/src/main/java/me/topchetoeu/jscript/common/Instruction.java +++ b/src/main/java/me/topchetoeu/jscript/common/Instruction.java @@ -471,9 +471,7 @@ public class Instruction { public static Instruction stackRealloc(int start, int n) { return new Instruction(Type.STACK_REALLOC, start, start + n); } - /** - * @deprecated - */ + @Deprecated public static Instruction stackFree(int n) { return new Instruction(Type.STACK_FREE, n); }