I upgraded to spring-javaformat 0.44 today and it is causing some checkstyle failures after applying the formatting. It looks like there was a change in the way we deal with org.springframework.lang.Nullable, see #435
@Override@NullablepublicBeanResolvergetBeanResolver() {
returnthis.beanFactoryResolver;
}Now gets transformed to
@Override@NullablepublicBeanResolvergetBeanResolver() {
returnthis.beanFactoryResolver;
}And then the Checkstyle check fails with Annotation 'Nullable' should be alone on line.
I upgraded to spring-javaformat 0.44 today and it is causing some checkstyle failures after applying the formatting. It looks like there was a change in the way we deal with
org.springframework.lang.Nullable, see #435Now gets transformed to
And then the Checkstyle check fails with
Annotation 'Nullable' should be alone on line.