-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Description
Inspected ObservableSampleWithObservable today, just to see how the resulting Observable acts if the sampler Observable completes, and found these method abstraction.
RxJava/src/main/java/io/reactivex/internal/operators/observable/ObservableSampleWithObservable.java
Line 195 in deeb141
| void completeMain() { |
RxJava/src/main/java/io/reactivex/internal/operators/observable/ObservableSampleWithObservable.java
Line 204 in deeb141
| void completeOther() { |
RxJava/src/main/java/io/reactivex/internal/operators/observable/ObservableSampleWithObservable.java
Line 166 in deeb141
| void completeMain() { |
RxJava/src/main/java/io/reactivex/internal/operators/observable/ObservableSampleWithObservable.java
Line 171 in deeb141
| void completeOther() { |
I don't see any point of them being separated if both methods just do the same thing, or am I missing something?