(final Function<? super T, ? extends R> f)
| 451 | private final Function<? super T, ? extends R> f; |
| 452 | |
| 453 | public Map(final Function<? super T, ? extends R> f) { |
| 454 | this.f = f; |
| 455 | } |
| 456 | |
| 457 | @Override |
| 458 | final Future<R> apply(final Future<T> result) { |
nothing calls this directly
no outgoing calls
no test coverage detected