(final Function<? super T, ? extends Future<R>> f)
| 24 | } |
| 25 | |
| 26 | @SuppressWarnings("unchecked") |
| 27 | @Override |
| 28 | public <R> Future<R> flatMap(final Function<? super T, ? extends Future<R>> f) { |
| 29 | return (Future<R>) this; |
| 30 | } |
| 31 | |
| 32 | @SuppressWarnings("unchecked") |
| 33 | @Override |
nothing calls this directly
no outgoing calls
no test coverage detected