Skip to content

Commit 237bf0a

Browse files
author
John J. Aylward
committed
more comments
1 parent f76fbe7 commit 237bf0a

1 file changed

Lines changed: 12 additions & 6 deletions

File tree

JSONTokener.java

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,19 @@ of this software and associated documentation files (the "Software"), to deal
3939
* @version 2014-05-03
4040
*/
4141
public class JSONTokener {
42-
43-
private long character;
42+
/** current read character. */
43+
private long character;
44+
/** flag to indicate if the end of the input has been found. */
4445
private boolean eof;
45-
private long index;
46-
private long line;
47-
private char previous;
48-
private Reader reader;
46+
/** current read index of the input. */
47+
private long index;
48+
/** current line of the input. */
49+
private long line;
50+
/** previous index of the input. */
51+
private char previous;
52+
/** Reader for the input. */
53+
private final Reader reader;
54+
/** flag to indicate that a previous character was requested. */
4955
private boolean usePrevious;
5056

5157

0 commit comments

Comments
 (0)