()
| 16 | public native int getRefCount(); |
| 17 | |
| 18 | @Override |
| 19 | public String toString() { |
| 20 | String s = super.toString(); |
| 21 | try { |
| 22 | return s.substring(0, s.length() - 1) + ", refCount=" + getRefCount() + ")"; |
| 23 | } catch (Throwable t) { |
| 24 | return s; |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | @ApiStatus.Internal |
| 29 | public static class _FinalizerHolder { |
nothing calls this directly
no test coverage detected