| 1511 | } |
| 1512 | |
| 1513 | void CallStaticVoidMethod(jclass cls, jmethodID methodID, ...) { |
| 1514 | va_list args; |
| 1515 | va_start(args,methodID); |
| 1516 | functions->CallStaticVoidMethodV(this,cls,methodID,args); |
| 1517 | va_end(args); |
| 1518 | } |
| 1519 | void CallStaticVoidMethodV(jclass cls, jmethodID methodID, |
| 1520 | va_list args) { |
| 1521 | functions->CallStaticVoidMethodV(this,cls,methodID,args); |
nothing calls this directly
no test coverage detected