diff --git a/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/TypeUtils.java b/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/TypeUtils.java index 197671b808..24c862c3e7 100644 --- a/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/TypeUtils.java +++ b/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/TypeUtils.java @@ -96,8 +96,8 @@ class TypeUtils { /** * Return the qualified name of the specified element. * @param element the element to handle - * @return the fully qualified name of the element, suitable for a call - * to {@link Class#forName(String)} + * @return the fully qualified name of the element, suitable for a call to + * {@link Class#forName(String)} */ public String getQualifiedName(Element element) { if (element == null) { @@ -106,19 +106,20 @@ class TypeUtils { TypeElement enclosingElement = getEnclosingTypeElement(element.asType()); if (enclosingElement != null) { return getQualifiedName(enclosingElement) + "$" - + ((DeclaredType) element.asType()).asElement().getSimpleName().toString(); + + ((DeclaredType) element.asType()).asElement().getSimpleName() + .toString(); } if (element instanceof TypeElement) { return ((TypeElement) element).getQualifiedName().toString(); } - throw new IllegalStateException("Could not extract qualified name from " - + element); + throw new IllegalStateException( + "Could not extract qualified name from " + element); } /** * Return the type of the specified {@link TypeMirror} including all its generic * information. - * @param type the type to handle + * @param type the type to handle * @return a representation of the type including all its generic information */ public String getType(TypeMirror type) { diff --git a/spring-boot-tools/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationprocessor/ConfigurationMetadataAnnotationProcessorTests.java b/spring-boot-tools/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationprocessor/ConfigurationMetadataAnnotationProcessorTests.java index bda588cdba..b99d4f67ed 100644 --- a/spring-boot-tools/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationprocessor/ConfigurationMetadataAnnotationProcessorTests.java +++ b/spring-boot-tools/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationprocessor/ConfigurationMetadataAnnotationProcessorTests.java @@ -374,8 +374,7 @@ public class ConfigurationMetadataAnnotationProcessorTests { assertThat(metadata).has(Metadata.withGroup("generic.foo.bar.biz").ofType( "org.springframework.boot.configurationsample.specific.GenericConfig$Bar$Biz")); assertThat(metadata).has(Metadata.withProperty("generic.foo.name") - .ofType(String.class) - .fromSource(GenericConfig.Foo.class)); + .ofType(String.class).fromSource(GenericConfig.Foo.class)); assertThat(metadata).has(Metadata.withProperty("generic.foo.string-to-bar") .ofType("java.util.Map>") .fromSource(GenericConfig.Foo.class)); @@ -383,11 +382,9 @@ public class ConfigurationMetadataAnnotationProcessorTests { .ofType("java.util.Map") .fromSource(GenericConfig.Foo.class)); assertThat(metadata).has(Metadata.withProperty("generic.foo.bar.name") - .ofType("java.lang.String") - .fromSource(GenericConfig.Bar.class)); + .ofType("java.lang.String").fromSource(GenericConfig.Bar.class)); assertThat(metadata).has(Metadata.withProperty("generic.foo.bar.biz.name") - .ofType("java.lang.String") - .fromSource(GenericConfig.Bar.Biz.class)); + .ofType("java.lang.String").fromSource(GenericConfig.Bar.Biz.class)); assertThat(metadata.getItems()).hasSize(9); }