Skip to content

Commit 420ac77

Browse files
author
Joachim Hofer
committed
Whoops, generics not allowed in @see javadoc...
1 parent e449fb1 commit 420ac77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rxjava-core/src/main/java/rx/operators/OperationCombineLatest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public static <T0, T1, R> Func1<Observer<R>, Subscription> combineLatest(Observa
5959
}
6060

6161
/**
62-
* @see #combineLatest(Observable<T0> w0, Observable<T1> w1, Func2<T0, T1, R> combineLatestFunction)
62+
* @see #combineLatest(Observable w0, Observable w1, Func2 combineLatestFunction)
6363
*/
6464
public static <T0, T1, T2, R> Func1<Observer<R>, Subscription> combineLatest(Observable<T0> w0, Observable<T1> w1, Observable<T2> w2, Func3<T0, T1, T2, R> combineLatestFunction) {
6565
Aggregator<R> a = new Aggregator<R>(Functions.fromFunc(combineLatestFunction));
@@ -70,7 +70,7 @@ public static <T0, T1, T2, R> Func1<Observer<R>, Subscription> combineLatest(Obs
7070
}
7171

7272
/**
73-
* @see #combineLatest(Observable<T0> w0, Observable<T1> w1, Func2<T0, T1, R> combineLatestFunction)
73+
* @see #combineLatest(Observable w0, Observable w1, Func2 combineLatestFunction)
7474
*/
7575
public static <T0, T1, T2, T3, R> Func1<Observer<R>, Subscription> combineLatest(Observable<T0> w0, Observable<T1> w1, Observable<T2> w2, Observable<T3> w3, Func4<T0, T1, T2, T3, R> combineLatestFunction) {
7676
Aggregator<R> a = new Aggregator<R>(Functions.fromFunc(combineLatestFunction));

0 commit comments

Comments
 (0)