| 270 | } |
| 271 | |
| 272 | PAG_API void Java_org_libpag_PAGAnimator_update(JNIEnv* env, jobject thiz) { |
| 273 | auto animator = getPAGAnimator(env, thiz); |
| 274 | if (animator == nullptr) { |
| 275 | return; |
| 276 | } |
| 277 | animator->update(); |
| 278 | } |
| 279 | } |
nothing calls this directly
no test coverage detected