提交 529ea062 编写于 作者: M malenkov

8005138: test/java/beans/Introspector/TestTypeResolver.java fails

Reviewed-by: alexsch
上级 b825b8bd
...@@ -180,10 +180,22 @@ public class TestTypeResolver { ...@@ -180,10 +180,22 @@ public class TestTypeResolver {
return null; // not used return null; // not used
} }
public <T extends Annotation> T[] getAnnotations(Class<T> annotationClass) {
return null; // not used
}
public Annotation[] getAnnotations() { public Annotation[] getAnnotations() {
return null; // not used return null; // not used
} }
public <T extends Annotation> T getDeclaredAnnotation(Class<T> annotationClass) {
return null; // not used
}
public <T extends Annotation> T[] getDeclaredAnnotations(Class<T> annotationClass) {
return null; // not used
}
public Annotation[] getDeclaredAnnotations() { public Annotation[] getDeclaredAnnotations() {
return null; // not used return null; // not used
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册