Skip to content

Commit

Permalink
Make BaseRowItem immutable
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsvanvelzen committed May 22, 2024
1 parent 1bad4c0 commit 38e826d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ import java.util.UUID
// BaseItemDtoBaseRowItem)
abstract class BaseRowItem protected constructor(
val baseRowType: BaseRowType,
var index: Int = 0,
val index: Int = 0,
val staticHeight: Boolean = false,
val preferParentThumb: Boolean = false,
val selectAction: BaseRowItemSelectAction = BaseRowItemSelectAction.ShowDetails,
var baseItem: BaseItemDto? = null,
val baseItem: BaseItemDto? = null,
val chapterInfo: ChapterItemInfo? = null,
val seriesTimerInfo: SeriesTimerInfoDto? = null,
val gridButton: GridButton? = null,
Expand Down

0 comments on commit 38e826d

Please sign in to comment.