Skip to content

Commit 378688c

Browse files
committed
toBackendCart is now package-private
1 parent 9c72fbc commit 378688c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file.
77
- Checkout now has a RECEIPT_AVAILABLE state, which gets fired after PAYMENT_SUCCESSFUL when
88
the receipt is generated by the backend. If you relied on using ui components (using CheckoutView),
99
this change is non-breaking.
10+
- ShoppingCart.toBackendCart is now package-private
1011

1112
### Added
1213
- Added the option to override the success and failure views in CheckoutView

core/src/main/java/io/snabble/sdk/ShoppingCart.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ public static class BackendCartItem {
545545
Integer units;
546546
}
547547

548-
public BackendCart toBackendCart() {
548+
BackendCart toBackendCart() {
549549
BackendCart backendCart = new BackendCart();
550550
backendCart.session = getId();
551551
backendCart.shopId = "unknown";

0 commit comments

Comments
 (0)