| 41 | } |
| 42 | |
| 43 | jmethodID JEnv::GetMethodID(jclass clazz, const string &name, const string &sig) { |
| 44 | jmethodID mid = m_env->GetMethodID(clazz, name.c_str(), sig.c_str()); |
| 45 | CheckForJavaException(); |
| 46 | return mid; |
| 47 | } |
| 48 | |
| 49 | jmethodID JEnv::GetStaticMethodID(jclass clazz, const string &name, const string &sig) { |
| 50 | jmethodID mid = m_env->GetStaticMethodID(clazz, name.c_str(), sig.c_str()); |
no outgoing calls
no test coverage detected