fix: comment indent

This commit is contained in:
The-Lum 2023-11-27 20:06:09 +00:00
parent a570cea56f
commit a7d434cff1
1 changed files with 2 additions and 2 deletions

View File

@ -82,9 +82,9 @@ public abstract class Eater {
char ch = peekChar();
if (ch == '{' || ch == '[') {
final String data = eatAllToEnd();
// System.err.println("data=" + data);
// System.err.println("data=" + data);
final JsonValue json = Json.parse(data);
// System.err.println("json=" + json);
// System.err.println("json=" + json);
return TValue.fromJson(json);
}
final TokenStack tokenStack = eatTokenStack();