forked from PeterCxy/OpenEUICC
fixing syntax not existing in older kotlin
This commit is contained in:
parent
284c0664f6
commit
655eb5cf52
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue