| 146 | JavaMethod() = default; |
| 147 | |
| 148 | Ret call(const JavaObject& object, const T&... args) const { |
| 149 | return call(object.getUnsafeObject(), args...); |
| 150 | } |
| 151 | |
| 152 | Ret call(jobject object, const T&... args) const { |
| 153 | const int ksize = sizeof...(args); |
nothing calls this directly
no test coverage detected