This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
commit 137e34041626ea1f19ec1bfec379eb6ca4257f55 Author: Gary Gregory <[email protected]> AuthorDate: Fri Dec 26 08:18:51 2025 -0500 Javadoc --- src/main/java/org/apache/commons/lang3/ClassUtils.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/org/apache/commons/lang3/ClassUtils.java b/src/main/java/org/apache/commons/lang3/ClassUtils.java index 6d8c644ea..fb01d702e 100644 --- a/src/main/java/org/apache/commons/lang3/ClassUtils.java +++ b/src/main/java/org/apache/commons/lang3/ClassUtils.java @@ -397,6 +397,11 @@ private static void getAllInterfaces(Class<?> cls, final HashSet<Class<?>> inter /** * Gets a {@link List} of superclasses for the given class. * + * <ol> + * <li>The first entry is the superclass of the given class.</li> + * <li>The last entry is {@link Object}'s class.</li> + * </ol> + * * @param cls the class to look up, may be {@code null}. * @return the {@link List} of superclasses in order going up from this one {@code null} if null input. */
