8005138: test/java/beans/Introspector/TestTypeResolver.java fails
Reviewed-by: alexsch
--- a/jdk/test/java/beans/Introspector/TestTypeResolver.java Thu Jan 24 17:50:03 2013 +0400
+++ b/jdk/test/java/beans/Introspector/TestTypeResolver.java Thu Jan 24 17:57:02 2013 +0400
@@ -180,10 +180,22 @@
return null; // not used
}
+ public <T extends Annotation> T[] getAnnotations(Class<T> annotationClass) {
+ return null; // not used
+ }
+
public Annotation[] getAnnotations() {
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() {
return null; // not used
}