content ivar can be final.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1459444 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cdfa53530d
commit
6e2c992072
|
@ -52,7 +52,7 @@ final class Token {
|
|||
Token.Type type = INVALID;
|
||||
|
||||
/** The content buffer. */
|
||||
StringBuilder content = new StringBuilder(INITIAL_TOKEN_LENGTH);
|
||||
final StringBuilder content = new StringBuilder(INITIAL_TOKEN_LENGTH);
|
||||
|
||||
/** Token ready flag: indicates a valid token with content (ready for the parser). */
|
||||
boolean isReady;
|
||||
|
|
Loading…
Reference in New Issue