Hey guys. In the java library that I am using meth...
# announcements
a
Hey guys. In the java library that I am using method parameter was wrongly annotated
@NonNull
. Implementation might actually send a null value in this parameter. When overriding method in Kotlin, I am forced to use non-optional parameter value, that results in NPE once in a while. Is there any way I could workaround this
@NonNull
annotation and avoid NPE?