src/main/java/com/spotify/futures/ApiFutureToCompletableFutureWrapper.java [49:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    return future;
  }

  @Override
  public void onSuccess(final V result) {
    complete(result);
  }

  @Override
  public void onFailure(final Throwable t) {
    completeExceptionally(t);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/spotify/futures/ListenableToCompletableFutureWrapper.java [49:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    return future;
  }

  @Override
  public void onSuccess(final V result) {
    complete(result);
  }

  @Override
  public void onFailure(final Throwable t) {
    completeExceptionally(t);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



