public static void checkCompleted()

in src/main/java/com/spotify/futures/CompletableFuturesExtra.java [180:184]


  public static <T> void checkCompleted(CompletionStage<T> stage) {
    if (!stage.toCompletableFuture().isDone()) {
      throw new IllegalStateException("future was not completed");
    }
  }