| 476 | } |
| 477 | |
| 478 | const char *JEnv::GetStringUTFChars(jstring str, jboolean *isCopy) { |
| 479 | const char *cc = m_env->GetStringUTFChars(str, isCopy); |
| 480 | CheckForJavaException(); |
| 481 | return cc; |
| 482 | } |
| 483 | |
| 484 | void JEnv::ReleaseStringUTFChars(jstring str, const char *utf) { |
| 485 | m_env->ReleaseStringUTFChars(str, utf); |
no outgoing calls
no test coverage detected