Skip to content

Commit 6e2c992

Browse files
committed
content ivar can be final.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1459444 13f79535-47bb-0310-9956-ffa450edef68
1 parent cdfa535 commit 6e2c992

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apache/commons/csv/Token.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ enum Type {
5252
Token.Type type = INVALID;
5353

5454
/** The content buffer. */
55-
StringBuilder content = new StringBuilder(INITIAL_TOKEN_LENGTH);
55+
final StringBuilder content = new StringBuilder(INITIAL_TOKEN_LENGTH);
5656

5757
/** Token ready flag: indicates a valid token with content (ready for the parser). */
5858
boolean isReady;

0 commit comments

Comments
 (0)