(final Future<U> other, final BiFunction<? super T, ? super U, ? extends R> f)
| 42 | } |
| 43 | |
| 44 | @SuppressWarnings("unchecked") |
| 45 | @Override |
| 46 | public <U, R> Future<R> biMap(final Future<U> other, final BiFunction<? super T, ? super U, ? extends R> f) { |
| 47 | return (Future<R>) this; |
| 48 | } |
| 49 | |
| 50 | @SuppressWarnings("unchecked") |
| 51 | @Override |
nothing calls this directly
no outgoing calls
no test coverage detected