| 53 | } |
| 54 | |
| 55 | jfieldID JEnv::GetFieldID(jclass clazz, const string &name, const string &sig) { |
| 56 | jfieldID fid = m_env->GetFieldID(clazz, name.c_str(), sig.c_str()); |
| 57 | CheckForJavaException(); |
| 58 | return fid; |
| 59 | } |
| 60 | |
| 61 | jfieldID JEnv::GetStaticFieldID(jclass clazz, const string &name, const string &sig) { |
| 62 | jfieldID fid = m_env->GetStaticFieldID(clazz, name.c_str(), sig.c_str()); |
no outgoing calls
no test coverage detected