gildor
09/12/2017, 10:12 AMlet
because if not null not works with mutable properties, and you need to use !!
Thread in Slack Conversation
just assign to local variable:
val v = mutableV
if (v == null) {
println(v)
} else {
println("was null")
}