mirror of
https://github.com/TeamNewPipe/NewPipe.git
synced 2025-10-03 17:59:41 +02:00
PlayerUIList: make UI list private
This commit is contained in:
parent
4e1b0e0555
commit
31ade7cd30
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ import org.schabi.newpipe.util.GuardedByMutex
|
||||||
import java.util.Optional
|
import java.util.Optional
|
||||||
|
|
||||||
class PlayerUiList(vararg initialPlayerUis: PlayerUi) {
|
class PlayerUiList(vararg initialPlayerUis: PlayerUi) {
|
||||||
var playerUis = GuardedByMutex(mutableListOf<PlayerUi>())
|
private var playerUis = GuardedByMutex(mutableListOf<PlayerUi>())
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a [PlayerUiList] starting with the provided player uis. The provided player uis
|
* Creates a [PlayerUiList] starting with the provided player uis. The provided player uis
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue