Skip to content

Commit 3fcfcc4

Browse files
committed
Merge branch '2.6.x' into 2.7.x
Closes gh-32103
2 parents ca63a6e + 3b01325 commit 3fcfcc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigurationImportSelector.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ protected void handleInvalidExcludes(List<String> invalidExcludes) {
234234
protected Set<String> getExclusions(AnnotationMetadata metadata, AnnotationAttributes attributes) {
235235
Set<String> excluded = new LinkedHashSet<>();
236236
excluded.addAll(asList(attributes, "exclude"));
237-
excluded.addAll(Arrays.asList(attributes.getStringArray("excludeName")));
237+
excluded.addAll(asList(attributes, "excludeName"));
238238
excluded.addAll(getExcludeAutoConfigurationsProperty());
239239
return excluded;
240240
}

0 commit comments

Comments
 (0)