!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

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