| 42 | |
| 43 | template<typename DefoldType> |
| 44 | static jobject GetFromCache(dmHashTable64<jobject>& cache, DefoldType* key) |
| 45 | { |
| 46 | jobject* pobj = cache.Get((uintptr_t)key); |
| 47 | if (!pobj) |
| 48 | return 0; |
| 49 | return *pobj; |
| 50 | } |
| 51 | |
| 52 | |
| 53 | // TODO: Move to jni_util.h |
no test coverage detected