Skip to content

Commit

Permalink
fix: comment indent
Browse files Browse the repository at this point in the history
  • Loading branch information
The-Lum committed Nov 27, 2023
1 parent a570cea commit a7d434c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/net/sourceforge/plantuml/tim/Eater.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ final public TValue eatExpression(TContext context, TMemory memory) throws 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();
Expand Down

0 comments on commit a7d434c

Please sign in to comment.