set JNIEnvVTable::NewWeakGlobalRef to NewGlobalRef since we don't yet have a weak version

This commit is contained in:
Joel Dice 2009-08-13 09:07:05 -06:00
parent 99e5e65bd8
commit b3a5823536

View File

@ -2003,6 +2003,7 @@ populateJNITables(JavaVMVTable* vmTable, JNIEnvVTable* envTable)
envTable->SetStaticFloatField = ::SetStaticFloatField;
envTable->SetStaticDoubleField = ::SetStaticDoubleField;
envTable->NewGlobalRef = ::NewGlobalRef;
envTable->NewWeakGlobalRef = ::NewGlobalRef;
envTable->DeleteGlobalRef = ::DeleteGlobalRef;
envTable->ExceptionOccurred = ::ExceptionOccurred;
envTable->ExceptionDescribe = ::ExceptionDescribe;