File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
src/test/java/com/upokecenter/test Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,14 @@ licensed under Creative Commons Zero (CC0):
19
19
// only the standard JSON format
20
20
21
21
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
+
22
30
// JSON parsing method
23
31
private int SkipWhitespaceJSON () {
24
32
while (this .index < this .endPos ) {
@@ -35,14 +43,6 @@ void RaiseError(String str) {
35
43
Math .max (0 , this .index - 1 ) + ")" );
36
44
}
37
45
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
-
46
46
private CBORObject NextJSONString () {
47
47
int c ;
48
48
int startIndex = this .index ;
You can’t perform that action at this time.
0 commit comments