fixing syntax not existing in older kotlin

This commit is contained in:
Alexandre Roux D'Anzi 2024-02-27 13:09:35 +01:00
parent 284c0664f6
commit 655eb5cf52

View file

@ -29,7 +29,7 @@ open class EuiccChannelManager(protected val context: Context) {
}
protected open val uiccCards: Collection<UiccCardInfoCompat>
get() = (0..<tm.activeModemCountCompat).map { FakeUiccCardInfoCompat(it) }
get() = (0 until tm.activeModemCountCompat).map { FakeUiccCardInfoCompat(it) }
private suspend fun ensureSEService() {
if (seService == null) {