File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/java/com/jsoniter Expand file tree Collapse file tree 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 {
5959 case '[' : // If open symbol, increase level
6060 level ++;
6161 break ;
62- case ']' : // If close symbol, increase level
62+ case ']' : // If close symbol, decrease level
6363 level --;
6464
6565 // If we have returned to the original level, we're done
@@ -85,7 +85,7 @@ final static void skipObject(JsonIterator iter) throws IOException {
8585 case '{' : // If open symbol, increase level
8686 level ++;
8787 break ;
88- case '}' : // If close symbol, increase level
88+ case '}' : // If close symbol, decrease level
8989 level --;
9090
9191 // 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 {
7171 case '[' : // If open symbol, increase level
7272 level ++;
7373 break ;
74- case ']' : // If close symbol, increase level
74+ case ']' : // If close symbol, decrease level
7575 level --;
7676
7777 // If we have returned to the original level, we're done
@@ -101,7 +101,7 @@ final static void skipObject(JsonIterator iter) throws IOException {
101101 case '{' : // If open symbol, increase level
102102 level ++;
103103 break ;
104- case '}' : // If close symbol, increase level
104+ case '}' : // If close symbol, decrease level
105105 level --;
106106
107107 // If we have returned to the original level, we're done
You can’t perform that action at this time.
0 commit comments