Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
saperi22 committed Apr 22, 2024
1 parent d4d2b78 commit 7894bb6
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,11 @@ data class PayPalNativeCheckoutRequest(
)
constructor(orderId: String) : this(orderId, null, false)

@Deprecated("Use the constructor to pass in the `hasUserLocationConsent` parameter.",
replaceWith = ReplaceWith("PayPalNativeCheckoutRequest(orderId, userAuthenticationEmail, hasUserLocationConsent)")
@Deprecated(
message = "Use the constructor to pass in the `hasUserLocationConsent` parameter.",
replaceWith = ReplaceWith(
"PayPalNativeCheckoutRequest(orderId, userAuthenticationEmail, hasUserLocationConsent)"
)
)
constructor(orderId: String, userAuthenticationEmail: String?) : this(
orderId,
Expand Down

0 comments on commit 7894bb6

Please sign in to comment.