Skip to content
This repository has been archived by the owner on May 24, 2023. It is now read-only.

Commit

Permalink
#129: remove fail implemented method getByPaymentMethodAndInterfaceId
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii-kovalenko-ct committed Apr 12, 2018
1 parent cba7584 commit 76dde1e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
3 changes: 0 additions & 3 deletions src/main/java/com/commercetools/service/ctp/CartService.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ public interface CartService {
CompletionStage<Optional<Cart>> getByPaymentId(@Nullable String paymentId,
@Nullable ExpansionPathContainer<Cart> pathContainer);

CompletionStage<Optional<Cart>> getByPaymentMethodAndInterfaceId(@Nullable String paymentMethodInterface,
@Nullable String interfaceId);

CompletionStage<Optional<Cart>> getByPaymentMethodAndInterfaceId(@Nullable String paymentMethodInterface,
@Nullable String interfaceId,
@Nullable ExpansionPathContainer<Cart> pathContainer);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,6 @@ public CompletionStage<Optional<Cart>> getByPaymentId(@Nullable String ctpPaymen
return sphereClient.execute(cartQuery).thenApplyAsync(PagedQueryResult::head);
}

@Override
public CompletionStage<Optional<Cart>> getByPaymentMethodAndInterfaceId(@Nullable String paymentMethodInterface,
@Nullable String interfaceId) {
return getByPaymentMethodAndInterfaceId(paymentMethodInterface, interfaceId);
}

@Override
public CompletionStage<Optional<Cart>> getByPaymentMethodAndInterfaceId(@Nullable String paymentMethodInterface,
@Nullable String interfaceId,
Expand Down

0 comments on commit 76dde1e

Please sign in to comment.