| 213 | |
| 214 | template<typename ... Args> |
| 215 | void CallVoidMethod(jobject obj, jmethodID methodID, Args ... args) { |
| 216 | m_env->CallVoidMethod(obj, methodID, args...); |
| 217 | CheckForJavaException(); |
| 218 | } |
| 219 | |
| 220 | template<typename ... Args> |
| 221 | void CallStaticVoidMethod(jclass clazz, jmethodID methodID, Args ... args) { |
no outgoing calls
no test coverage detected