()
| 7 | /** Native C++ Object wrapper. */ |
| 8 | public class NativeObject implements Cloneable, Serializable { |
| 9 | protected void finalize() throws Throwable |
| 10 | { |
| 11 | super.finalize(); |
| 12 | unsetupNative(); |
| 13 | } |
| 14 | |
| 15 | protected native void initWithNative(long nativeHandle); |
| 16 | private native void unsetupNative(); |
nothing calls this directly
no test coverage detected