From d2ea5b444812b4c55e00fecb7b6451073677061d Mon Sep 17 00:00:00 2001 From: Sam Brannen <104798+sbrannen@users.noreply.github.com> Date: Fri, 23 Aug 2024 11:24:22 +0200 Subject: [PATCH] Polish internal Javadoc --- .../src/main/java/org/springframework/util/ClassUtils.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spring-core/src/main/java/org/springframework/util/ClassUtils.java b/spring-core/src/main/java/org/springframework/util/ClassUtils.java index cab2e454bb46..ee00015fa8aa 100644 --- a/spring-core/src/main/java/org/springframework/util/ClassUtils.java +++ b/spring-core/src/main/java/org/springframework/util/ClassUtils.java @@ -136,12 +136,14 @@ public abstract class ClassUtils { /** * Cache for equivalent methods on a public interface implemented by the declaring class. + *

A {@code null} value signals that no public interface method was found for the key. */ private static final Map interfaceMethodCache = new ConcurrentReferenceHashMap<>(256); /** * Cache for equivalent public methods in a public declaring type within the type hierarchy * of the method's declaring class. + *

A {@code null} value signals that no publicly accessible method was found for the key. * @since 6.2 */ private static final Map publiclyAccessibleMethodCache = new ConcurrentReferenceHashMap<>(256);