https://kotlinlang.org logo
#reflect
Title
# reflect
d

dszopa

07/21/2017, 2:49 AM
Specifically when I debug I see that the java type shows up as
javaType!
indicating it could be nullable or non nullable, where as the kotlin type shows up as `kotlinType?`indicating nullable
u

udalov

07/28/2017, 11:53 AM
For Java types with unknown nullability,
isMarkedNullable
returns
false
as documented. Checking if a type has unknown nullability is not supported at the moment (https://youtrack.jetbrains.com/issue/KT-14276)