The library includes a CompositeDisposable.plusAssign(DisposableHandle) function, which is used to easily add DisposableHandles to a CompositeDisposable. However, this is rarely used but really gets in the way when using RxJava's plusAssign in the sense that the auto-import may suggest the wrong import.
This method should ideally be removed altogether, possibly introducing an alternative if necessary.
The library includes a
CompositeDisposable.plusAssign(DisposableHandle)
function, which is used to easily addDisposableHandle
s to aCompositeDisposable
. However, this is rarely used but really gets in the way when using RxJava'splusAssign
in the sense that the auto-import may suggest the wrong import.This method should ideally be removed altogether, possibly introducing an alternative if necessary.