1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-06-26 23:22:52 +00:00

PlayerUIList: make UI list private

This commit is contained in:
Profpatsch 2025-05-13 15:55:13 +02:00
parent f5a4af2d67
commit be373dca8d

View File

@ -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