этот код компилируется нормально
Код: Выделить всё
myConfig?.myFramerate = myFramerate!!.toInt()
myConfig?.myFramerate = myFramerate.toInt()
Код: Выделить всё
Only safe (?.) or non-null asserted (!!.) calls are allowed on a nullable receiver of type 'kotlin.String?'.
Код: Выделить всё
myConfig?.myFramerate = myFramerate!!.toInt()
myConfig?.myFramerate = myFramerate!!.toInt()
Код: Выделить всё
Unnecessary non-null assertion (!!) on a non-null receiver of type String
Подробнее здесь: https://stackoverflow.com/questions/787 ... nullablity
Мобильная версия