(boolean mayInterruptIfRunning)
| 668 | checkNotNull(function); |
| 669 | return new Future<O>() { |
| 670 | @Override |
| 671 | public boolean cancel(boolean mayInterruptIfRunning) { |
| 672 | return input.cancel(mayInterruptIfRunning); |
| 673 | } |
| 674 | |
| 675 | @Override |
| 676 | public boolean isCancelled() { |
no outgoing calls
no test coverage detected