| 10 | jobject g_currentActivity{}; |
| 11 | |
| 12 | thread_local struct Env final |
| 13 | { |
| 14 | ~Env() |
| 15 | { |
| 16 | if (m_attached) |
| 17 | { |
| 18 | g_javaVM->DetachCurrentThread(); |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | bool m_attached{}; |
| 23 | } g_env{}; |
| 24 | |
| 25 | template<typename ... Args> |
| 26 | class Event final |
nothing calls this directly
no outgoing calls
no test coverage detected