Commit 78b3c197 by Ben Elliston Committed by Ben Elliston

jni.cc (_Jv_JNI_GetObjectRefType): Mark `object' parameter as maybe unused.

	* jni.cc (_Jv_JNI_GetObjectRefType): Mark `object' parameter as
	maybe unused.

From-SVN: r154749
parent f1c4ff70
2009-11-30 Ben Elliston <bje@au.ibm.com>
* jni.cc (_Jv_JNI_GetObjectRefType): Mark `object' parameter as
maybe unused.
2009-11-26 Ben Elliston <bje@au.ibm.com> 2009-11-26 Ben Elliston <bje@au.ibm.com>
* posix-threads.cc (ParkHelper::unpark): Do not initialise result, * posix-threads.cc (ParkHelper::unpark): Do not initialise result,
......
...@@ -1806,7 +1806,7 @@ _Jv_JNI_GetDirectBufferCapacity (JNIEnv *, jobject buffer) ...@@ -1806,7 +1806,7 @@ _Jv_JNI_GetDirectBufferCapacity (JNIEnv *, jobject buffer)
} }
static jobjectRefType JNICALL static jobjectRefType JNICALL
_Jv_JNI_GetObjectRefType (JNIEnv *, jobject object) _Jv_JNI_GetObjectRefType (JNIEnv *, MAYBE_UNUSED jobject object)
{ {
JvFail("GetObjectRefType not implemented"); JvFail("GetObjectRefType not implemented");
return JNIInvalidRefType; return JNIInvalidRefType;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment