We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03306a1 commit fa8836dCopy full SHA for fa8836d
2 files changed
build.gradle
@@ -11,7 +11,7 @@ plugins {
11
}
12
13
group 'club.someoneice.json'
14
-version '1.7.5'
+version '1.7.6'
15
16
repositories {
17
mavenLocal()
src/main/java/club/someoneice/json/JsonParser.java
@@ -118,7 +118,7 @@ private ArrayNode arrayNodeProcessor(char[] charList) {
118
char c = charList[i];
119
120
if (stringStart) {
121
- if (c == KEY_STRING) {
+ if (c != KEY_STRING) {
122
builder.append(c);
123
continue;
124
0 commit comments