Is there some way to make kotlin assume that any v...
# announcements
c
Is there some way to make kotlin assume that any values coming from a java method or class are nullable?
c
annotate it with
@Nullable
🙏 1
n
I think people have asked in the channel before how to essentially replace all platform types (
!
) with nullable types (
?
), and IIRC that's not actually possible
e
Detekt + type resolution can find all those cases