(@Nullable C closeable)
| 128 | // close. this word no longer has any meaning to me. |
| 129 | |
| 130 | @CanIgnoreReturnValue |
| 131 | public <C extends Closeable> C register(@Nullable C closeable) { |
| 132 | if (closeable != null) { |
| 133 | stack.addFirst(closeable); |
| 134 | } |
| 135 | return closeable; |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * Stores the given throwable and rethrows it. It will be rethrown as is if it is an |
no test coverage detected