diff options
Diffstat (limited to 'libnativebridge/native_bridge_lazy.cc')
-rw-r--r-- | libnativebridge/native_bridge_lazy.cc | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libnativebridge/native_bridge_lazy.cc b/libnativebridge/native_bridge_lazy.cc index 09eac02fd9..dd8a8068b4 100644 --- a/libnativebridge/native_bridge_lazy.cc +++ b/libnativebridge/native_bridge_lazy.cc @@ -69,20 +69,6 @@ void* NativeBridgeGetTrampoline(void* handle, const char* name, const char* shor return f(handle, name, shorty, len); } -void* NativeBridgeGetTrampoline2( - void* handle, const char* name, const char* shorty, uint32_t len, JNICallType jni_call_type) { - static auto f = GET_FUNC_PTR(NativeBridgeGetTrampoline2); - return f(handle, name, shorty, len, jni_call_type); -} - -void* NativeBridgeGetTrampolineForFunctionPointer(const void* method, - const char* shorty, - uint32_t len, - JNICallType jni_call_type) { - static auto f = GET_FUNC_PTR(NativeBridgeGetTrampolineForFunctionPointer); - return f(method, shorty, len, jni_call_type); -} - const char* NativeBridgeGetError() { static auto f = GET_FUNC_PTR(NativeBridgeGetError); return f(); |