File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
core/src/main/java/io/snabble/sdk Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff 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
88the receipt is generated by the backend. If you relied on using ui components (using CheckoutView),
99this 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
Original file line number Diff line number Diff 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" ;
You can’t perform that action at this time.
0 commit comments