| 686 | } |
| 687 | |
| 688 | JsArgConverter::~JsArgConverter() { |
| 689 | if (m_argsLen > 0) { |
| 690 | JEnv env; |
| 691 | for (int i = 0; i < m_args_refs_size; i++) { |
| 692 | int index = m_args_refs[i]; |
| 693 | if (index != -1) { |
| 694 | env.DeleteLocalRef(m_args[index].l); |
| 695 | } |
| 696 | } |
| 697 | } |
| 698 | } |
nothing calls this directly
no test coverage detected