File tree Expand file tree Collapse file tree 3 files changed +0
-6
lines changed
core/src/main/java/io/snabble/sdk
ui/src/main/java/io/snabble/sdk/ui/checkout Expand file tree Collapse file tree 3 files changed +0
-6
lines changed Original file line number Diff line number Diff line change 33import com .google .gson .annotations .SerializedName ;
44
55public enum PaymentMethod {
6- @ SerializedName ("cash" )
7- CASH (false , false ),
86 @ SerializedName ("qrCodePOS" )
97 QRCODE_POS (false , false ),
108 @ SerializedName ("encodedCodes" )
Original file line number Diff line number Diff line change @@ -111,9 +111,6 @@ public void onStateChanged(Checkout.State state) {
111111
112112 private void displayPaymentView () {
113113 switch (checkout .getSelectedPaymentMethod ()) {
114- case CASH :
115- displayView (new CheckoutStatusView (getContext ()));
116- break ;
117114 case TELECASH_DIRECT_DEBIT :
118115 displayView (new CheckoutStatusView (getContext ()));
119116 break ;
Original file line number Diff line number Diff line change @@ -53,7 +53,6 @@ class PaymentMethodView extends FrameLayout implements PaymentCredentialsStore.C
5353 private static Map <PaymentMethod , String > descriptions = new HashMap <>();
5454
5555 static {
56- icons .put (PaymentMethod .CASH , R .drawable .ic_pm_sepa );
5756 icons .put (PaymentMethod .TELECASH_DIRECT_DEBIT , R .drawable .ic_pm_sepa );
5857 icons .put (PaymentMethod .QRCODE_POS , R .drawable .ic_pm_checkstand );
5958 icons .put (PaymentMethod .ENCODED_CODES , R .drawable .ic_pm_checkstand );
You can’t perform that action at this time.
0 commit comments