Fix Javadoc since for AopProxyUtils.isLambda()

See gh-28010
This commit is contained in:
izeye
2022-02-05 21:48:09 +09:00
committed by Stephane Nicoll
parent 5bbdd36e19
commit 4ab03fede8

View File

@@ -252,7 +252,7 @@ public abstract class AopProxyUtils {
* checks that work on modern, main stream JVMs.
* @param clazz the class to check
* @return {@code true} if the class is a lambda implementation class
* @since 5.2.16
* @since 5.3.16
*/
static boolean isLambda(Class<?> clazz) {
return (clazz.isSynthetic() && (clazz.getSuperclass() == Object.class) &&