summaryrefslogtreecommitdiffstats
path: root/java/jni/BluetoothEvent.cxx
diff options
context:
space:
mode:
authorAndrei Vasiliu <[email protected]>2016-01-13 13:11:36 +0200
committerAndrei Vasiliu <[email protected]>2016-01-13 13:50:20 +0200
commit4ae10b7e66833f6c1521d32cb0db8e541f9f1dca (patch)
treef902116566beb2a156497c7e750017b7194ba528 /java/jni/BluetoothEvent.cxx
parent9bd0cccc7fb86595574f0689f77db8bf6f7c18a3 (diff)
Java: Solved unused variable warnings in BluetoothEvent.cxx
Events are not yet implemented in the native part. This commit solves warning issues caused by unused variables from BluetoothEvent.cxx. Signed-off-by: Andrei Vasiliu <[email protected]>
Diffstat (limited to 'java/jni/BluetoothEvent.cxx')
-rw-r--r--java/jni/BluetoothEvent.cxx30
1 files changed, 30 insertions, 0 deletions
diff --git a/java/jni/BluetoothEvent.cxx b/java/jni/BluetoothEvent.cxx
index 9f6b9720..3f03e92a 100644
--- a/java/jni/BluetoothEvent.cxx
+++ b/java/jni/BluetoothEvent.cxx
@@ -2,31 +2,61 @@
jobject Java_BluetoothEvent_getType(JNIEnv *env, jobject obj)
{
+ (void)env;
+ (void)obj;
+
+ return NULL;
}
jstring Java_BluetoothEvent_getName(JNIEnv *env, jobject obj)
{
+ (void)env;
+ (void)obj;
+
+ return NULL;
}
jstring Java_BluetoothEvent_getIdentifier(JNIEnv *env, jobject obj)
{
+ (void)env;
+ (void)obj;
+
+ return NULL;
}
jboolean Java_BluetoothEvent_executeCallback(JNIEnv *env, jobject obj)
{
+ (void)env;
+ (void)obj;
+
+ return JNI_FALSE;
}
jboolean Java_BluetoothEvent_hasCallback(JNIEnv *env, jobject obj)
{
+ (void)env;
+ (void)obj;
+
+ return JNI_FALSE;
}
void Java_BluetoothEvent_init(JNIEnv *env, jobject obj, jobject type, jstring name,
jstring identifier, jobject parent, jobject callback,
jobject arg_data)
{
+ (void)env;
+ (void)obj;
+ (void)type;
+ (void)name;
+ (void)identifier;
+ (void)parent;
+ (void)callback;
+ (void)arg_data;
}
void Java_BluetoothEvent_delete(JNIEnv *env, jobject obj)
{
+ (void)env;
+ (void)obj;
}