We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
See spring-projects/spring-boot#28180.
We'd like this:
return switch (getErrorProperties().getIncludeBindingErrors()) { case ALWAYS -> true; case ON_PARAM -> getErrorsParameter(request); default -> false; };
To be formatted like this:
Similarly, we'd like this:
switch (getErrorProperties().getIncludeBindingErrors()) { case ALWAYS: return true; case ON_PARAM: return getErrorsParameter(request); default: return false; }
The text was updated successfully, but these errors were encountered:
3d9559e
Fix switch statement formatting in Eclipse
f8cdb7a
See spring-io/spring-javaformat#336
wilkinsona
No branches or pull requests
See spring-projects/spring-boot#28180.
We'd like this:
To be formatted like this:
Similarly, we'd like this:
To be formatted like this:
The text was updated successfully, but these errors were encountered: