Skip to content

Commit

Permalink
MM-110
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkeye14 committed Jan 10, 2025
1 parent c578efe commit 508c156
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 @@ -56,7 +56,7 @@ data class LoanAccount(

var timeline: Timeline?,

) : Account(), Parcelable {
) : Account(), Parcelable {
constructor(parcel: Parcel) : this(
parcel.readLong(),
parcel.readString(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ data class Timeline(

var withdrawnOnDate: List<Int>,

) : Parcelable {
) : Parcelable {
constructor(parcel: Parcel) : this(
arrayListOf<Int>().apply {
parcel.readArrayList(Int::class.java.classLoader)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ data class TimeLine(

var closedOnDate: List<Int>,

) : Parcelable {
) : Parcelable {
constructor(parcel: Parcel) : this(
arrayListOf<Int>().apply {
parcel.readArrayList(Int::class.java.classLoader)
Expand Down

0 comments on commit 508c156

Please sign in to comment.