(final Function<? super T, ? extends R> f)
| 18 | } |
| 19 | |
| 20 | @SuppressWarnings("unchecked") |
| 21 | @Override |
| 22 | public <R> Future<R> map(final Function<? super T, ? extends R> f) { |
| 23 | return (Future<R>) this; |
| 24 | } |
| 25 | |
| 26 | @SuppressWarnings("unchecked") |
| 27 | @Override |
nothing calls this directly
no outgoing calls
no test coverage detected