Skip to content

Commit

Permalink
[jdk8] Add dummy JNI function to satisfy linker
Browse files Browse the repository at this point in the history
  • Loading branch information
zakkak committed Nov 17, 2017
1 parent d8e5850 commit 6b3687e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions com.oracle.max.vm.native/substrate/jvm.c
Expand Up @@ -787,6 +787,14 @@ JVM_GetMethodParameterAnnotations(JNIEnv *env, jobject method) {
return 0;
}

/* Annotations support (JDK 1.8) */

// Type use annotations support (JDK 1.8) */
jbyteArray
JVM_GetClassTypeAnnotations(JNIEnv *env, jclass cls) {
UNIMPLEMENTED_WITH_ENV();
return 0;
}

/*
* New (JDK 1.4) reflection implementation
Expand Down

0 comments on commit 6b3687e

Please sign in to comment.