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