| 431 | } |
| 432 | |
| 433 | void ValdiAndroid::NativeBridge::contextOnCreate( // NOLINT |
| 434 | fbjni::alias_ref<fbjni::JClass> /* clazz */, // NOLINT |
| 435 | jlong contextHandle) { |
| 436 | auto context = getContext(contextHandle); |
| 437 | if (context != nullptr) { |
| 438 | context->onCreate(); |
| 439 | } |
| 440 | } |
| 441 | |
| 442 | void ValdiAndroid::NativeBridge::updateResource( // NOLINT |
| 443 | fbjni::alias_ref<fbjni::JClass> /* clazz */, // NOLINT |
nothing calls this directly
no test coverage detected