Hi,

It seems I made a typo when adding the new JNI 1.2 method.

2003-08-08 Mark Wielaard  <[EMAIL PROTECTED]>

        * include/jni_cpp.h (JNIEnv::CheckException): Change to
        ExceptionCheck.

Thanks to Chris Halls for finding this.
I believe he now has some other small JNI 1.2 thingies that he would
like to see added to kaffe :)

Cheers,

Mark
Index: include/jni_cpp.h
===================================================================
RCS file: /cvs/kaffe/kaffe/include/jni_cpp.h,v
retrieving revision 1.5
diff -u -r1.5 jni_cpp.h
--- include/jni_cpp.h	7 Jul 2003 18:02:16 -0000	1.5
+++ include/jni_cpp.h	8 Aug 2003 17:01:37 -0000
@@ -1201,9 +1201,9 @@
 	return (functions->GetJavaVM(this, a));
 }
 
-inline jboolean JNIEnv::CheckException(void)
+inline jboolean JNIEnv::ExceptionCheck(void)
 {
-	return (functions->CheckException(this));
+	return (functions->ExceptionCheck(this));
 }
 
 #endif

Reply via email to