From d7e4e7a024440482f7f1a524b1016b63ffc92742 Mon Sep 17 00:00:00 2001 From: TopchetoEU <36534413+TopchetoEU@users.noreply.github.com> Date: Sat, 14 Sep 2024 18:45:55 +0300 Subject: [PATCH] refactor: oops --- src/main/java/me/topchetoeu/jscript/common/Instruction.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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); }