Skip to content

Commit

Permalink
Fix detekt lint errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
sshropshire committed Nov 5, 2024
1 parent c5eee47 commit c540119
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ sealed class CardStatus {
class VaultSuccess(val result: CardVaultResult) : CardStatus()
class VaultCanceled(val setupTokenId: String?) : CardStatus()

class UnknownError(val error: Throwable): CardStatus()
class UnknownError(val error: Throwable) : CardStatus()
data object NoResult : CardStatus()
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ object BrowserSwitchRequestCodes {

const val PAYPAL_CHECKOUT = 3
const val PAYPAL_VAULT = 4
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ sealed class PayPalWebStatus {
class VaultSuccess(val result: PayPalWebVaultResult) : PayPalWebStatus()
data object VaultCanceled : PayPalWebStatus()

class UnknownError(val error: Throwable): PayPalWebStatus()
class UnknownError(val error: Throwable) : PayPalWebStatus()
data object NoResult : PayPalWebStatus()
}

0 comments on commit c540119

Please sign in to comment.