We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ea6246 commit fc2878aCopy full SHA for fc2878a
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/json/BasicJsonParser.java
@@ -142,7 +142,9 @@ private List<String> tokenize(String json) {
142
case '}' -> inObject--;
143
case '[' -> inList++;
144
case ']' -> inList--;
145
- case '"' -> inValue = !inValue;
+ }
146
+ if (current == '"') {
147
+ inValue = !inValue;
148
}
149
if (current == ',' && inObject == 0 && inList == 0 && !inValue) {
150
list.add(build.toString());
0 commit comments