| 482 | } |
| 483 | |
| 484 | void JEnv::ReleaseStringUTFChars(jstring str, const char *utf) { |
| 485 | m_env->ReleaseStringUTFChars(str, utf); |
| 486 | CheckForJavaException(); |
| 487 | } |
| 488 | |
| 489 | const jchar *JEnv::GetStringChars(jstring str, jboolean *isCopy) { |
| 490 | const jchar *cjc = m_env->GetStringChars(str, isCopy); |
no outgoing calls
no test coverage detected