| 471 | } |
| 472 | |
| 473 | void JEnv::SetObjectArrayElement(jobjectArray array, jsize index, jobject value) { |
| 474 | m_env->SetObjectArrayElement(array, index, value); |
| 475 | CheckForJavaException(); |
| 476 | } |
| 477 | |
| 478 | const char *JEnv::GetStringUTFChars(jstring str, jboolean *isCopy) { |
| 479 | const char *cc = m_env->GetStringUTFChars(str, isCopy); |
no outgoing calls
no test coverage detected