Skip to content

Use enhanced switch statement #41975

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -90,23 +90,16 @@ public JSONTokener(String in) {
*/
public Object nextValue() throws JSONException {
int c = nextCleanInternal();
switch (c) {
case -1:
throw syntaxError("End of input");

case '{':
return readObject();

case '[':
return readArray();

case '\'', '"':
return nextString((char) c);

default:
return switch (c) {
case -1 -> throw syntaxError("End of input");
case '{' -> readObject();
case '[' -> readArray();
case '\'', '"' -> nextString((char) c);
default -> {
this.pos--;
return readLiteral();
}
yield readLiteral();
}
};
}

private int nextCleanInternal() throws JSONException {
Expand Down