| 38 | } |
| 39 | |
| 40 | bool Reference::isNull() const |
| 41 | { |
| 42 | return (_shared == nullptr || (Env::get().getJniEnv()->IsSameObject(_shared->getJObject(), nullptr) != 0u)); |
| 43 | } |
| 44 | |
| 45 | /** Returns true if this reference points to the same object as the |
| 46 | * other reference.*/ |
no test coverage detected