| 101 | } |
| 102 | |
| 103 | void JNICALL Java_i2jrt_ORB_destroy(JNIEnv *jni, jobject jThis) |
| 104 | { |
| 105 | try { |
| 106 | recoverTaoORB(jni, jThis)->destroy(); |
| 107 | |
| 108 | } catch (const CORBA::SystemException &se) { |
| 109 | throw_java_exception(jni, se); |
| 110 | } |
| 111 | } |
nothing calls this directly
no test coverage detected