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:
public record TestRecord(@DefaultValue( {
"123", "456" }) Set<Integer> knownSecurePorts){
}
So the next time I try to issue mvn compile, it will fail.
If I have a very simple record in the form:
this in
spring-cloud-kubernetesthat uses4.0.0-SNAPSHOT. and runmvn compilefor it, it is formatted like this:So the next time I try to issue
mvn compile, it will fail.