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:
Gary D. Gregory 2013-03-21 18:42:03 +00:00
parent cdfa53530d
commit 6e2c992072
1 changed files with 1 additions and 1 deletions

View File

@ -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;