Merge pull request #28010 from izeye

* pr/28010:
  Fix Javadoc since for AopProxyUtils.isLambda()

Closes gh-28010
This commit is contained in:
Stephane Nicoll 2022-02-05 13:59:33 +01:00
commit 874432b38a
1 changed files with 1 additions and 1 deletions

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) &&