From 7894bb6d5e8ebb0d5f772e807a9b5e4bcf7370f1 Mon Sep 17 00:00:00 2001 From: saperi Date: Mon, 22 Apr 2024 12:19:14 -0700 Subject: [PATCH] fix lint issue --- .../paypalnativepayments/PayPalNativeCheckoutRequest.kt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/PayPalNativePayments/src/main/java/com/paypal/android/paypalnativepayments/PayPalNativeCheckoutRequest.kt b/PayPalNativePayments/src/main/java/com/paypal/android/paypalnativepayments/PayPalNativeCheckoutRequest.kt index c4de73ee6..4286efcf1 100644 --- a/PayPalNativePayments/src/main/java/com/paypal/android/paypalnativepayments/PayPalNativeCheckoutRequest.kt +++ b/PayPalNativePayments/src/main/java/com/paypal/android/paypalnativepayments/PayPalNativeCheckoutRequest.kt @@ -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,