From 12ef7015953075e461d4cbc8329970c4652e8434 Mon Sep 17 00:00:00 2001 From: Fabrice Ducos Date: Mon, 24 Apr 2023 02:02:28 +0200 Subject: [PATCH] src/core/org/luaj/vm2/compiler/LexState.java Store Integers directly in RESERVED (instead of String): Integer.valueOf(FIRST_RESERVED+i) -> new Integer(FIRST_RESERVED+i) --- src/core/org/luaj/vm2/compiler/LexState.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/org/luaj/vm2/compiler/LexState.java b/src/core/org/luaj/vm2/compiler/LexState.java index cf15e8e0..01c3508c 100644 --- a/src/core/org/luaj/vm2/compiler/LexState.java +++ b/src/core/org/luaj/vm2/compiler/LexState.java @@ -170,7 +170,7 @@ public class LexState extends Constants { static { for ( int i=0; i