summaryrefslogtreecommitdiff
path: root/test cases/java/9 jdk/src/com/mesonbuild/JdkTest.java
diff options
context:
space:
mode:
authorTristan Partin <tristan@partin.io>2022-01-26 00:33:58 -0600
committerEli Schwartz <eschwartz93@gmail.com>2022-03-02 16:23:09 -0500
commit96b2469544fba40e63d009db73b41c3b07b80684 (patch)
tree4d365b8e8c8a6a8784b55b37eefa2b8b33b2d09b /test cases/java/9 jdk/src/com/mesonbuild/JdkTest.java
parentf9bfeb2add70973113ab4a98454a5c5d7e3a26ae (diff)
downloadmeson-96b2469544fba40e63d009db73b41c3b07b80684.tar.gz
Rename JDK system dep to JNI
JNI is a more apt name because it currently only supports the JNI. I also believe that CMake uses the terminology JNI here as well. JNI is currently the only way to interact with the JVM through native code, but there is a project called "Project Panama" which aims to be another way for native code to interact with the JVM.
Diffstat (limited to 'test cases/java/9 jdk/src/com/mesonbuild/JdkTest.java')
-rw-r--r--test cases/java/9 jdk/src/com/mesonbuild/JdkTest.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/test cases/java/9 jdk/src/com/mesonbuild/JdkTest.java b/test cases/java/9 jdk/src/com/mesonbuild/JdkTest.java
deleted file mode 100644
index 35c47cef8..000000000
--- a/test cases/java/9 jdk/src/com/mesonbuild/JdkTest.java
+++ /dev/null
@@ -1,15 +0,0 @@
-package com.mesonbuild;
-
-public final class JdkTest {
- private static native int jdk_test();
-
- public static void main(String[] args) {
- if (jdk_test() != 0xdeadbeef) {
- throw new RuntimeException("jdk_test() did not return 0");
- }
- }
-
- static {
- System.loadLibrary("jdkjava");
- }
-}