Merge branch '5.3.x'

This commit is contained in:
Stephane Nicoll
2022-02-05 13:59:45 +01:00

View File

@@ -246,7 +246,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) &&