I am not talking about Idea or docs, my problem is...
# announcements
w
I am not talking about Idea or docs, my problem is that if I have some
r
of
SomeRecord?
than I have to make sure it is not a null. I can put it into
if…
or call it
r!!.something
. If I don't - the compiler will show an error. When
r
comes from Java it is
SomeRecord!
and now I can write
r.something
and BUUUMMM my code explodes in runtime.