jinseongeun
Committed by GitHub

Add private keyword (#92)

@@ -19,8 +19,8 @@ import kotlinx.coroutines.flow.flatMapLatest @@ -19,8 +19,8 @@ import kotlinx.coroutines.flow.flatMapLatest
19 import kotlinx.coroutines.flow.flowOf 19 import kotlinx.coroutines.flow.flowOf
20 20
21 class ParticipantItem( 21 class ParticipantItem(
22 - val room: Room,  
23 - val participant: Participant 22 + private val room: Room,
  23 + private val participant: Participant
24 ) : BindableItem<ParticipantItemBinding>() { 24 ) : BindableItem<ParticipantItemBinding>() {
25 25
26 private var boundVideoTrack: VideoTrack? = null 26 private var boundVideoTrack: VideoTrack? = null