File tree 1 file changed +2
-0
lines changed
spring-core/src/main/java/org/springframework/util
1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -136,12 +136,14 @@ public abstract class ClassUtils {
136
136
137
137
/**
138
138
* Cache for equivalent methods on a public interface implemented by the declaring class.
139
+ * <p>A {@code null} value signals that no public interface method was found for the key.
139
140
*/
140
141
private static final Map <Method , Method > interfaceMethodCache = new ConcurrentReferenceHashMap <>(256 );
141
142
142
143
/**
143
144
* Cache for equivalent public methods in a public declaring type within the type hierarchy
144
145
* of the method's declaring class.
146
+ * <p>A {@code null} value signals that no publicly accessible method was found for the key.
145
147
* @since 6.2
146
148
*/
147
149
private static final Map <Method , Method > publiclyAccessibleMethodCache = new ConcurrentReferenceHashMap <>(256 );
You can’t perform that action at this time.
0 commit comments