We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e14520 commit acc8c89Copy full SHA for acc8c89
spring-core/src/main/java/org/springframework/core/annotation/AnnotationUtils.java
@@ -1514,7 +1514,7 @@ static List<String> getAttributeAliasNames(Method attribute) {
1514
Assert.notNull(attribute, "attribute must not be null");
1515
1516
AliasDescriptor descriptor = AliasDescriptor.from(attribute);
1517
- return (descriptor == null ? Collections.emptyList() : descriptor.getAttributeAliasNames());
+ return (descriptor == null ? Collections.<String> emptyList() : descriptor.getAttributeAliasNames());
1518
}
1519
1520
/**
0 commit comments