| 119 | } |
| 120 | |
| 121 | jstring VmCore::redirectPathString(JNIEnv *env, jstring path) { |
| 122 | env = ensureEnvCreated(); |
| 123 | return (jstring) env->CallStaticObjectMethod(VMEnv.VMCoreClass, VMEnv.redirectPathString, path); |
| 124 | } |
| 125 | |
| 126 | jobject VmCore::redirectPathFile(JNIEnv *env, jobject path) { |
| 127 | env = ensureEnvCreated(); |
nothing calls this directly
no test coverage detected