Upgrade to spring-javaformat 0.0.48

Closes gh-51452
This commit is contained in:
Phillip Webb
2026-08-25 13:58:58 -07:00
parent 53c04499b4
commit 5a21e0d698
58 changed files with 133 additions and 70 deletions
@@ -101,12 +101,12 @@ abstract class AbstractDevToolsIntegrationTests {
this.classesDirectory = classesDirectory;
}
protected ControllerBuilder withRequestMapping(String mapping) {
ControllerBuilder withRequestMapping(String mapping) {
this.mappings.add(mapping);
return this;
}
protected void build() throws Exception {
void build() throws Exception {
DynamicType.Builder<Object> builder = new ByteBuddy().subclass(Object.class)
.name(this.name)
.annotateType(AnnotationDescription.Builder.ofType(RestController.class).build());