summaryrefslogtreecommitdiff
path: root/touch/source
diff options
context:
space:
mode:
Diffstat (limited to 'touch/source')
-rw-r--r--touch/source/android/android.cxx20
1 files changed, 0 insertions, 20 deletions
diff --git a/touch/source/android/android.cxx b/touch/source/android/android.cxx
index f9c8542ee2db..bb86f0b6ae2a 100644
--- a/touch/source/android/android.cxx
+++ b/touch/source/android/android.cxx
@@ -47,24 +47,4 @@ void ByteBufferWrapper::operator()(sal_uInt8 * /* p */)
get_env()->DeleteGlobalRef(object);
}
-extern "C"
-__attribute__ ((visibility("default")))
-jlong
-Java_org_libreoffice_android_Bootstrap_new_1byte_1buffer_1wrapper(JNIEnv *env,
- jobject /* clazz */,
- jobject bytebuffer)
-{
- return (jlong) (intptr_t) new ByteBufferWrapper(env, bytebuffer);
-}
-
-extern "C"
-__attribute__ ((visibility("default")))
-void
-Java_org_libreoffice_android_Bootstrap_delete_1byte_1buffer_1wrapper(JNIEnv * /* env */,
- jobject /* clazz */,
- jlong bbw)
-{
- delete (ByteBufferWrapper*) (intptr_t) bbw;
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */