(final Future<U> other,
final BiFunction<? super T, ? super U, ? extends Future<R>> f)
| 48 | } |
| 49 | |
| 50 | @SuppressWarnings("unchecked") |
| 51 | @Override |
| 52 | public <U, R> Future<R> biFlatMap(final Future<U> other, |
| 53 | final BiFunction<? super T, ? super U, ? extends Future<R>> f) { |
| 54 | return (Future<R>) this; |
| 55 | } |
| 56 | |
| 57 | @Override |
| 58 | public Future<T> ensure(final Runnable r) { |
nothing calls this directly
no outgoing calls
no test coverage detected