Skip to content

Commit dda9ef5

Browse files
committed
update Java version
1 parent d07142a commit dda9ef5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/test/java/com/upokecenter/test/JSONWithComments.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@ licensed under Creative Commons Zero (CC0):
1919
// only the standard JSON format
2020

2121
final class JSONWithComments {
22+
private final String jstring;
23+
private final List<CBORObject> currPointer;
24+
private final JSONOptions options;
25+
private int currPointerStackSize;
26+
private List<String[]> pointers;
27+
private int index;
28+
private int endPos;
29+
2230
// JSON parsing method
2331
private int SkipWhitespaceJSON() {
2432
while (this.index < this.endPos) {
@@ -35,14 +43,6 @@ void RaiseError(String str) {
3543
Math.max(0, this.index - 1) + ")");
3644
}
3745

38-
private final String jstring;
39-
private final List<CBORObject> currPointer;
40-
private int currPointerStackSize;
41-
private final JSONOptions options;
42-
private List<String[]> pointers;
43-
private int index;
44-
private int endPos;
45-
4646
private CBORObject NextJSONString() {
4747
int c;
4848
int startIndex = this.index;

0 commit comments

Comments
 (0)