Skip to content

Commit 250ef28

Browse files
committed
reverted non-public proxy interface change
1 parent 9fe2b5d commit 250ef28

File tree

1 file changed

+1
-1
lines changed
  • org.springframework.core/src/main/java/org/springframework/util

1 file changed

+1
-1
lines changed

org.springframework.core/src/main/java/org/springframework/util/ClassUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -948,7 +948,7 @@ public static Class[] getAllInterfacesForClass(Class clazz, ClassLoader classLoa
948948
while (clazz != null) {
949949
Class[] ifcs = clazz.getInterfaces();
950950
for (Class ifc : ifcs) {
951-
if (!interfaces.contains(ifc) && Modifier.isPublic(ifc.getModifiers()) &&
951+
if (!interfaces.contains(ifc) &&
952952
(classLoader == null || isVisible(ifc, classLoader))) {
953953
interfaces.add(ifc);
954954
}

0 commit comments

Comments
 (0)