Skip to content

Commit 2fc91b0

Browse files
committed
removed default implementations of ResolvedJavaMethod.getParameterAnnotationInfo and ResolvedJavaMethod.getAnnotationDefaultInfo
1 parent b5f79f3 commit 2fc91b0

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/jdk.internal.vm.ci/share/classes/jdk/vm/ci/meta/ResolvedJavaMethod.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -424,15 +424,11 @@ default boolean isScoped() {
424424
* Gets the class file info for the parameter annotations on this method
425425
* or {@code null} if no such info exists.
426426
*/
427-
default AnnotationsInfo getParameterAnnotationInfo() {
428-
return null;
429-
}
427+
AnnotationsInfo getParameterAnnotationInfo();
430428

431429
/**
432430
* Gets the class file info for the default value of the annotation element represented
433431
* by this method or {@code null} if no such info exists.
434432
*/
435-
default AnnotationsInfo getAnnotationDefaultInfo() {
436-
return null;
437-
}
433+
AnnotationsInfo getAnnotationDefaultInfo();
438434
}

0 commit comments

Comments
 (0)