File tree 2 files changed +4
-4
lines changed
src/main/java/com/jsoniter
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ final static void skipArray(JsonIterator iter) throws IOException {
59
59
case '[' : // If open symbol, increase level
60
60
level ++;
61
61
break ;
62
- case ']' : // If close symbol, increase level
62
+ case ']' : // If close symbol, decrease level
63
63
level --;
64
64
65
65
// If we have returned to the original level, we're done
@@ -85,7 +85,7 @@ final static void skipObject(JsonIterator iter) throws IOException {
85
85
case '{' : // If open symbol, increase level
86
86
level ++;
87
87
break ;
88
- case '}' : // If close symbol, increase level
88
+ case '}' : // If close symbol, decrease level
89
89
level --;
90
90
91
91
// If we have returned to the original level, we're done
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ final static void skipArray(JsonIterator iter) throws IOException {
71
71
case '[' : // If open symbol, increase level
72
72
level ++;
73
73
break ;
74
- case ']' : // If close symbol, increase level
74
+ case ']' : // If close symbol, decrease level
75
75
level --;
76
76
77
77
// If we have returned to the original level, we're done
@@ -101,7 +101,7 @@ final static void skipObject(JsonIterator iter) throws IOException {
101
101
case '{' : // If open symbol, increase level
102
102
level ++;
103
103
break ;
104
- case '}' : // If close symbol, increase level
104
+ case '}' : // If close symbol, decrease level
105
105
level --;
106
106
107
107
// If we have returned to the original level, we're done
You can’t perform that action at this time.
0 commit comments