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):
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 ;
You can’t perform that action at this time.
0 commit comments