fix: minor fix `final` variable definition

This commit is contained in:
The-Lum 2023-12-03 10:48:30 +01:00 committed by GitHub
parent d2dd274881
commit 1899280e21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ public abstract class Eater {
}
final public TValue eatExpression(TContext context, TMemory memory) throws EaterException, EaterExceptionLocated {
char ch = peekChar();
final char ch = peekChar();
if (ch == '{' || ch == '[') {
final String data = eatAllToEnd();
// System.err.println("data=" + data);