Disposes of the context.
()
| 4575 | * Disposes of the context. |
| 4576 | **/ |
| 4577 | @Override |
| 4578 | public void close() |
| 4579 | { |
| 4580 | if (m_ctx == 0) |
| 4581 | return; |
| 4582 | |
| 4583 | m_RefQueue.forceClear(); |
| 4584 | |
| 4585 | m_boolSort = null; |
| 4586 | m_intSort = null; |
| 4587 | m_realSort = null; |
| 4588 | m_stringSort = null; |
| 4589 | m_RefQueue = null; |
| 4590 | |
| 4591 | synchronized (creation_lock) { |
| 4592 | Native.delContext(m_ctx); |
| 4593 | } |
| 4594 | m_ctx = 0; |
| 4595 | } |
| 4596 | } |
no test coverage detected