Skip to content

Commit d2ea5b4

Browse files
committed
Polish internal Javadoc
1 parent 47f88e1 commit d2ea5b4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

+2
Original file line numberDiff line numberDiff line change
@@ -136,12 +136,14 @@ public abstract class ClassUtils {
136136

137137
/**
138138
* 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.
139140
*/
140141
private static final Map<Method, Method> interfaceMethodCache = new ConcurrentReferenceHashMap<>(256);
141142

142143
/**
143144
* Cache for equivalent public methods in a public declaring type within the type hierarchy
144145
* of the method's declaring class.
146+
* <p>A {@code null} value signals that no publicly accessible method was found for the key.
145147
* @since 6.2
146148
*/
147149
private static final Map<Method, Method> publiclyAccessibleMethodCache = new ConcurrentReferenceHashMap<>(256);

0 commit comments

Comments
 (0)