Skip to content

Commit 91af9e2

Browse files
committed
Merge branch '2.0.x'
2 parents b26dedb + d80ed27 commit 91af9e2

File tree

1 file changed

+1
-1
lines changed
  • spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor

1 file changed

+1
-1
lines changed

spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/TypeUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class TypeUtils {
8787
private TypeMirror getDeclaredType(Types types, Class<?> typeClass,
8888
int numberOfTypeArgs) {
8989
TypeMirror[] typeArgs = new TypeMirror[numberOfTypeArgs];
90-
Arrays.setAll(typeArgs, i -> types.getWildcardType(null, null));
90+
Arrays.setAll(typeArgs, (i) -> types.getWildcardType(null, null));
9191
TypeElement typeElement = this.env.getElementUtils()
9292
.getTypeElement(typeClass.getName());
9393
try {

0 commit comments

Comments
 (0)