Skip to content

Commit 9043a4f

Browse files
committed
removed the unnecessary extends Notification<?> from repeatWhen too.
1 parent 5fa9255 commit 9043a4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6667,7 +6667,7 @@ public final Observable<T> repeat(final long count, Scheduler scheduler) {
66676667
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229428.aspx">MSDN: Observable.Repeat</a>
66686668
* @since 0.20
66696669
*/
6670-
public final Observable<T> repeatWhen(Func1<? super Observable<? extends Notification<?>>, ? extends Observable<? extends Notification<?>>> notificationHandler, Scheduler scheduler) {
6670+
public final Observable<T> repeatWhen(Func1<? super Observable<? extends Notification<?>>, ? extends Observable<?>> notificationHandler, Scheduler scheduler) {
66716671
return OnSubscribeRedo.repeat(this, notificationHandler, scheduler);
66726672
}
66736673

@@ -6692,7 +6692,7 @@ public final Observable<T> repeatWhen(Func1<? super Observable<? extends Notific
66926692
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229428.aspx">MSDN: Observable.Repeat</a>
66936693
* @since 0.20
66946694
*/
6695-
public final Observable<T> repeatWhen(Func1<? super Observable<? extends Notification<?>>, ? extends Observable<? extends Notification<?>>> notificationHandler) {
6695+
public final Observable<T> repeatWhen(Func1<? super Observable<? extends Notification<?>>, ? extends Observable<?>> notificationHandler) {
66966696
return OnSubscribeRedo.repeat(this, notificationHandler);
66976697
}
66986698

0 commit comments

Comments
 (0)