Is there a reason why RxJava 2.x static factory me...
# rx
a
Is there a reason why RxJava 2.x static factory methods such as
Observable.just(T value)
or
BehaviorSubject.createDefault(T defaultValue)
don't have
@NonNull
argument annotations? The arguments are generally checked right away when constructing an instance, so they will immediately crash with
NullPointerException
.