Skip to content

Commit 8453de7

Browse files
committed
spotless: Fix code style
1 parent 8c635d4 commit 8453de7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

commercetools/commercetools-importapi-utils/src/main/java/com/commercetools/sdk/InventoryUtil.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11

22
package com.commercetools.sdk;
33

4-
54
import com.commercetools.api.models.channel.ChannelReference;
65
import com.commercetools.api.models.inventory.InventoryEntry;
76
import com.commercetools.importapi.models.common.ChannelKeyReference;

commercetools/commercetools-importapi-utils/src/main/java/com/commercetools/sdk/StandalonePriceUtil.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ public StandalonePriceImport toStandalonePriceImport(StandalonePrice price) {
3333
.sku(price.getSku()) // required field
3434
.value(v -> importApiTypedMoney(price.getValue(), v)) // required field
3535
.country(price.getCountry())
36-
.customerGroup((new CustomerUtil(keyResolverService)).toCustomerGroupKeyReference(price.getCustomerGroup()))
36+
.customerGroup(
37+
(new CustomerUtil(keyResolverService)).toCustomerGroupKeyReference(price.getCustomerGroup()))
3738
.channel(toImportApiChannelKeyReference(price.getChannel()))
3839
.validFrom(price.getValidFrom())
3940
.validUntil(price.getValidUntil())

0 commit comments

Comments
 (0)