Skip to content

Commit

Permalink
Whoops, generics not allowed in @see javadoc...
Browse files Browse the repository at this point in the history
  • Loading branch information
Joachim Hofer committed Mar 27, 2013
1 parent 65ad83c commit 128e892
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static <T0, T1, R> Func1<Observer<R>, Subscription> combineLatest(Observa
}

/**
* @see #combineLatest(Observable<T0> w0, Observable<T1> w1, Func2<T0, T1, R> combineLatestFunction)
* @see #combineLatest(Observable w0, Observable w1, Func2 combineLatestFunction)
*/
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) {
Aggregator<R> a = new Aggregator<R>(Functions.fromFunc(combineLatestFunction));
Expand All @@ -70,7 +70,7 @@ public static <T0, T1, T2, R> Func1<Observer<R>, Subscription> combineLatest(Obs
}

/**
* @see #combineLatest(Observable<T0> w0, Observable<T1> w1, Func2<T0, T1, R> combineLatestFunction)
* @see #combineLatest(Observable w0, Observable w1, Func2 combineLatestFunction)
*/
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) {
Aggregator<R> a = new Aggregator<R>(Functions.fromFunc(combineLatestFunction));
Expand Down

0 comments on commit 128e892

Please sign in to comment.