2
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-08-22 10:09:39 +00:00

PlayerUIList: make UI list private

This commit is contained in:
Profpatsch 2025-05-13 15:55:13 +02:00
parent 4e1b0e0555
commit 31ade7cd30

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