mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-22 22:19:03 +00:00
reverted non-public proxy interface change
This commit is contained in:
@@ -948,7 +948,7 @@ public abstract class ClassUtils {
|
||||
while (clazz != null) {
|
||||
Class[] ifcs = clazz.getInterfaces();
|
||||
for (Class ifc : ifcs) {
|
||||
if (!interfaces.contains(ifc) && Modifier.isPublic(ifc.getModifiers()) &&
|
||||
if (!interfaces.contains(ifc) &&
|
||||
(classLoader == null || isVisible(ifc, classLoader))) {
|
||||
interfaces.add(ifc);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user