| 1493 | } |
| 1494 | |
| 1495 | jdouble CallStaticDoubleMethod(jclass clazz, |
| 1496 | jmethodID methodID, ...) { |
| 1497 | va_list args; |
| 1498 | jdouble result; |
| 1499 | va_start(args,methodID); |
| 1500 | result = functions->CallStaticDoubleMethodV(this,clazz,methodID,args); |
| 1501 | va_end(args); |
| 1502 | return result; |
| 1503 | } |
| 1504 | jdouble CallStaticDoubleMethodV(jclass clazz, |
| 1505 | jmethodID methodID, va_list args) { |
| 1506 | return functions->CallStaticDoubleMethodV(this,clazz,methodID,args); |
nothing calls this directly
no test coverage detected