diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-12-17 11:59:55 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-12-17 12:05:18 +0200 |
commit | eda423d7bd792ef502efeb253048b25f356bc7d9 (patch) | |
tree | 341de79c4ef63d8299e93296ae43f9c48401b4f3 /touch/source/android | |
parent | bd219e3cba549694f2c190916626ae9e65f06c81 (diff) |
Bin code that became dead after 8ecf956d79878c9b24f5ddc51d6b723a76d334f5
Change-Id: I310abed7e86f8b7153817be5ae03cc3c8fec3c50
Diffstat (limited to 'touch/source/android')
-rw-r--r-- | touch/source/android/android.cxx | 20 |
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: */ |