* Class: snapchat_valdi_nativebridge_ValdiNativeBridge * Method: deleteRuntime * Signature: (J)V */
| 203 | * Signature: (J)V |
| 204 | */ |
| 205 | void ValdiAndroid::NativeBridge::deleteRuntimeManager( // NOLINT |
| 206 | fbjni::alias_ref<fbjni::JClass> /* clazz */, // NOLINT |
| 207 | jlong handle) { |
| 208 | auto* runtimeManagerWrapper = getRuntimeManagerWrapper(handle); |
| 209 | delete runtimeManagerWrapper; |
| 210 | } |
| 211 | |
| 212 | void ValdiAndroid::NativeBridge::registerViewClassReplacement( // NOLINT |
| 213 | fbjni::alias_ref<fbjni::JClass> /* clazz */, // NOLINT |
nothing calls this directly
no test coverage detected