Constructor
| 533 | public: |
| 534 | // Constructor |
| 535 | JavaWeakRef(jobject obj) : JavaWeakRef(jniGetThreadEnv(), obj) {} |
| 536 | JavaWeakRef(JNIEnv * jniEnv, jobject obj) : m_weakRef(create(jniEnv, obj)) {} |
| 537 | |
| 538 | // Get the object pointed to if it's still strongly reachable or, return null if not. |
nothing calls this directly
no test coverage detected