Skip to content

Commit

Permalink
fix: minor fix final variable definition
Browse files Browse the repository at this point in the history
  • Loading branch information
The-Lum authored Dec 3, 2023
1 parent d2dd274 commit 1899280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/net/sourceforge/plantuml/tim/Eater.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ final protected String eatAllToEnd() throws EaterException {
}

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);
Expand Down

0 comments on commit 1899280

Please sign in to comment.