Skip to content

Commit

Permalink
Remove unused return value
Browse files Browse the repository at this point in the history
  • Loading branch information
salander85 committed Oct 26, 2023
1 parent e8e59be commit 12d8ec4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,15 +164,15 @@ private void setupSourceProjectData(final ProjectApiRoot sourceProjectClient) {
final CustomerGroup customerGroup =
sourceProjectClient.customerGroups().post(customerGroupDraft).executeBlocking().getBody();

CTP_TARGET_CLIENT.customerGroups().post(customerGroupDraft).executeBlocking().getBody();
CTP_TARGET_CLIENT.customerGroups().post(customerGroupDraft).executeBlocking();

CustomFieldsDraft customFieldsDraft =
CustomFieldsDraftBuilder.of().type(type.toResourceIdentifier()).build();

final ChannelDraft draft =
ChannelDraftBuilder.of().key("channelKey").roles(ChannelRoleEnum.INVENTORY_SUPPLY).build();
sourceProjectClient.channels().post(draft).executeBlocking().getBody();
CTP_TARGET_CLIENT.channels().post(draft).executeBlocking().getBody();
sourceProjectClient.channels().post(draft).executeBlocking();
CTP_TARGET_CLIENT.channels().post(draft).executeBlocking();

final PriceDraft priceDraft =
PriceDraftBuilder.of(getPriceDraft(22200L, "EUR", "DE", null, null, null))
Expand Down

0 comments on commit 12d8ec4

Please sign in to comment.