Merge pull request #28010 from izeye
* pr/28010: Fix Javadoc since for AopProxyUtils.isLambda() Closes gh-28010
This commit is contained in:
commit
874432b38a
|
|
@ -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) &&
|
||||
|
|
|
|||
Loading…
Reference in New Issue