is it ok to do `if ( (x != null) && (x.isE...
# announcements
d
is it ok to do
if ( (x != null) && (x.isEmpty())  )...
? I ask because i have this statement broken onto 2 lines and the
KotlinNullPointerException
in the Stack Trace is from the 2nd line (i.e. the line with
x.isEmpty()