(Context ctx)
| 112 | } |
| 113 | |
| 114 | private void cleanup(Context ctx) { |
| 115 | decRef(ctx, nativePtr); |
| 116 | assert (prev != null && next != null); |
| 117 | prev.next = next; |
| 118 | next.prev = prev; |
| 119 | } |
| 120 | |
| 121 | private void insert(Reference<?> ref) { |
| 122 | assert next != null; |
no test coverage detected