Skip to content

Commit 5fa9255

Browse files
committed
Make retryWhen the same with the Scheduler as the retryWhen without the Scheduler.
1 parent 83cc1c1 commit 5fa9255

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rxjava-core/src/main/java/rx/Observable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7435,7 +7435,7 @@ public final Observable<T> retryWhen(Func1<? super Observable<? extends Notifica
74357435
* @see <a href="https://github.com/Netflix/RxJava/wiki/Error-Handling-Operators#retrywhen">RxJava Wiki: retryWhen()</a>
74367436
* @since 0.20
74377437
*/
7438-
public final Observable<T> retryWhen(Func1<? super Observable<? extends Notification<?>>, ? extends Observable<? extends Notification<?>>> notificationHandler, Scheduler scheduler) {
7438+
public final Observable<T> retryWhen(Func1<? super Observable<? extends Notification<?>>, ? extends Observable<?>> notificationHandler, Scheduler scheduler) {
74397439
return OnSubscribeRedo.<T> retry(this, notificationHandler, scheduler);
74407440
}
74417441

0 commit comments

Comments
 (0)