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 12f1682 commit 02d3cfaCopy full SHA for 02d3cfa
spring-core/src/main/java/org/springframework/util/ReflectionUtils.java
@@ -697,7 +697,7 @@ private static List<Method> findConcreteMethodsOnInterfaces(Class<?> clazz) {
697
for (Method ifcMethod : ifc.getMethods()) {
698
if (!Modifier.isAbstract(ifcMethod.getModifiers())) {
699
if (result == null) {
700
- result = new LinkedList<>();
+ result = new ArrayList<>();
701
}
702
result.add(ifcMethod);
703
0 commit comments