Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
rdlabo committed Aug 12, 2024
1 parent 6a634ac commit 39921b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public void load() {
: GooglePayLauncher.BillingAddressConfig.Format.Min,
metaData.phoneNumberRequired
),
metaData.existingPaymentMethodRequired
metaData.existingPaymentMethodRequired
),
(boolean isReady) -> this.googlePayExecutor.isAvailable = isReady,
(@NotNull GooglePayLauncher.Result result) ->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ public MetaData(Supplier<Context> contextSupplier) {
phoneNumberRequired = appInfo.metaData.getBoolean("com.getcapacitor.community.stripe.phone_number_required");
billingAddressRequired = appInfo.metaData.getBoolean("com.getcapacitor.community.stripe.billing_address_required");
billingAddressFormat = appInfo.metaData.getString("com.getcapacitor.community.stripe.billing_address_format");
existingPaymentMethodRequired = appInfo.metaData.getBoolean("com.getcapacitor.community.stripe.google_pay_existing_payment_method_required");
existingPaymentMethodRequired =
appInfo.metaData.getBoolean("com.getcapacitor.community.stripe.google_pay_existing_payment_method_required");

// @deprecated. will remove at v6.0.0
enableIdentifier = appInfo.metaData.getBoolean("com.getcapacitor.community.stripe.enableIdentifier");
Expand Down

0 comments on commit 39921b7

Please sign in to comment.