summaryrefslogtreecommitdiff
path: root/src/libjvm-jnibridge.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libjvm-jnibridge.c')
-rw-r--r--src/libjvm-jnibridge.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/libjvm-jnibridge.c b/src/libjvm-jnibridge.c
deleted file mode 100644
index b8c8592..0000000
--- a/src/libjvm-jnibridge.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <stdarg.h>
-#include <stdio.h>
-#include <assert.h>
-#include "jvm/jni.h"
-
-jobject
-bitter_jnibridge_JNIBridge_newInterfaceProxy(JNIEnv *env, jobject object, va_list args)
-{
- static jobject sv;
- return (sv ? sv : (sv = (*env)->AllocObject(env, (*env)->FindClass(env, "java/lang/reflect/Proxy"))));
-}