public static CompletableFuture completableFuture()

in src/main/java/software/amazon/smithy/lsp/Utils.java [38:46]


  public static <U> CompletableFuture<U> completableFuture(U value) {
    Supplier<U> supplier = new Supplier<U>() {
      public U get() {
        return value;
      }
    };

    return CompletableFuture.supplyAsync(supplier);
  }