Skip to content

Commit

Permalink
Polish internal Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrannen committed Aug 23, 2024
1 parent 47f88e1 commit d2ea5b4
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,12 +136,14 @@ public abstract class ClassUtils {

/**
* Cache for equivalent methods on a public interface implemented by the declaring class.
* <p>A {@code null} value signals that no public interface method was found for the key.
*/
private static final Map<Method, Method> interfaceMethodCache = new ConcurrentReferenceHashMap<>(256);

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

0 comments on commit d2ea5b4

Please sign in to comment.