(Throwable t)
| 879 | } |
| 880 | |
| 881 | private static <T> CompletableFuture<T> failedFuture(Throwable t) { |
| 882 | CompletableFuture<T> cf = new CompletableFuture<>(); |
| 883 | cf.completeExceptionally(t); |
| 884 | return cf; |
| 885 | } |
| 886 | |
| 887 | } |
no outgoing calls
no test coverage detected