| 447 | } |
| 448 | |
| 449 | jstring JEnv::NewString(const jchar *unicodeChars, jsize len) { |
| 450 | jstring jst = m_env->NewString(unicodeChars, len); |
| 451 | CheckForJavaException(); |
| 452 | return jst; |
| 453 | } |
| 454 | |
| 455 | jstring JEnv::NewStringUTF(const char *bytes) { |
| 456 | jstring jst = m_env->NewStringUTF(bytes); |
no outgoing calls
no test coverage detected