| 466 | } |
| 467 | |
| 468 | jlong createInternedString(JavaEnv env, jstring string) { |
| 469 | auto stringBox = toInternedString(env, string); |
| 470 | if (stringBox.isEmpty()) { |
| 471 | return 0; |
| 472 | } |
| 473 | |
| 474 | return reinterpret_cast<jlong>(Valdi::unsafeBridgeRetain(stringBox.getInternedString().get())); |
| 475 | } |
| 476 | |
| 477 | void destroyInternedString(jlong ptr) { |
| 478 | Valdi::unsafeBridgeRelease(reinterpret_cast<void*>(ptr)); |
no test coverage detected