!560 修复AnnotationProxy#annotationType获取不到注解类型的问题

Merge pull request !560 from 阿超/v5-dev
This commit is contained in:
Looly 2022-03-05 15:51:51 +00:00 committed by Gitee
commit 748f0f0f30
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -39,7 +39,7 @@ public class AnnotationProxy<T extends Annotation> implements Annotation, Invoca
@Override
public Class<? extends Annotation> annotationType() {
return null;
return type;
}
@Override