| 885 | jlong nativeHandle) { |
| 886 | auto* value = reinterpret_cast<Valdi::Value*>(nativeHandle); |
| 887 | delete value; |
| 888 | } |
| 889 | |
| 890 | void ValdiAndroid::NativeBridge::releaseNativeRef(fbjni::alias_ref<fbjni::JClass> /* clazz */, // NOLINT |
| 891 | jlong handle) { |
| 892 | Valdi::unsafeBridgeRelease(reinterpret_cast<void*>(handle)); |
| 893 | } |
nothing calls this directly
no test coverage detected