Skip to content

Commit 415218f

Browse files
committed
change inner class Token to static
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/sandbox/csv/trunk@483716 13f79535-47bb-0310-9956-ffa450edef68
1 parent 5cbfe40 commit 415218f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/java/org/apache/commons/csv/CSVParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public class CSVParser {
8383
*
8484
* It is used as contract between the lexer and the parser.
8585
*/
86-
class Token {
86+
static class Token {
8787
/** Token type, see TT_xxx constants. */
8888
int type = TT_INVALID;
8989
/** The content buffer. */

0 commit comments

Comments
 (0)