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
If I have a very simple record in the form:
public record TestRecord(@DefaultValue({"123", "456" }) Set<Integer> knownSecurePorts){ }
this in spring-cloud-kubernetes that uses 4.0.0-SNAPSHOT. and run mvn compile for it, it is formatted like this:
spring-cloud-kubernetes
4.0.0-SNAPSHOT
mvn compile
public record TestRecord(@DefaultValue( { "123", "456" }) Set<Integer> knownSecurePorts){ }
So the next time I try to issue mvn compile, it will fail.
The text was updated successfully, but these errors were encountered:
as a work-around, I can do // @formatter:off...
// @formatter:off
Sorry, something went wrong.
No branches or pull requests
If I have a very simple record in the form:
this in
spring-cloud-kubernetes
that uses4.0.0-SNAPSHOT
. and runmvn compile
for it, it is formatted like this:So the next time I try to issue
mvn compile
, it will fail.The text was updated successfully, but these errors were encountered: