Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/maven/maven-938dc6d752
Browse files Browse the repository at this point in the history
  • Loading branch information
eamonnmcmanus committed May 1, 2024
2 parents 99162a7 + 749d22f commit d7aa588
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gson/src/main/java/com/google/gson/stream/JsonReader.java
Expand Up @@ -1177,7 +1177,7 @@ private String nextUnquotedValue() throws IOException {
}

String result =
(null == builder) ? new String(buffer, pos, i) : builder.append(buffer, pos, i).toString();
(builder == null) ? new String(buffer, pos, i) : builder.append(buffer, pos, i).toString();
pos += i;
return result;
}
Expand Down

0 comments on commit d7aa588

Please sign in to comment.