(ListenableFuture<V> delegate)
| 77 | @Nullable |
| 78 | private Future<?> timer; |
| 79 | private TimeoutFuture(ListenableFuture<V> delegate) { |
| 80 | this.delegateRef = Preconditions.checkNotNull(delegate); |
| 81 | } |
| 82 | |
| 83 | /** A runnable that is called when the delegate or the timer completes. */ |
| 84 |
nothing calls this directly
no test coverage detected