| 86 | |
| 87 | template<typename Ret, typename... T> |
| 88 | JavaStaticMethod<Ret, T...> getStaticMethod(const char* name) { |
| 89 | auto methodID = getStaticMethodID<Ret, T...>(name); |
| 90 | |
| 91 | return JavaStaticMethod<Ret, T...>(getEnv(), methodID); |
| 92 | } |
| 93 | |
| 94 | template<typename Ret, typename... T> |
| 95 | void getStaticMethod(const char* name, JavaStaticMethod<Ret, T...>& method) { |
nothing calls this directly
no test coverage detected