Skip to content

Commit

Permalink
Fix kotlin formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
albin-mullvad authored and Jontified committed Oct 16, 2023
1 parent 3d5cbe6 commit bf6d46a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,5 @@ import kotlinx.parcelize.Parcelize
sealed class PlayPurchaseInitResult : Parcelable {
@Parcelize data class Ok(val obfuscatedId: String) : PlayPurchaseInitResult()

@Parcelize
data class Error(val error: PlayPurchaseInitError) :
PlayPurchaseInitResult()
@Parcelize data class Error(val error: PlayPurchaseInitError) : PlayPurchaseInitResult()
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@ import kotlinx.parcelize.Parcelize
sealed class PlayPurchaseVerifyResult : Parcelable {
@Parcelize data object Ok : PlayPurchaseVerifyResult()

@Parcelize
data class Error(val error: PlayPurchaseVerifyError) : PlayPurchaseVerifyResult()
@Parcelize data class Error(val error: PlayPurchaseVerifyError) : PlayPurchaseVerifyResult()
}

0 comments on commit bf6d46a

Please sign in to comment.