From 128e8929589294bc0258b198b43ff8ecd460b946 Mon Sep 17 00:00:00 2001 From: Joachim Hofer Date: Wed, 27 Mar 2013 21:50:31 +0100 Subject: [PATCH] Whoops, generics not allowed in @see javadoc... --- .../src/main/java/rx/operators/OperationCombineLatest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rxjava-core/src/main/java/rx/operators/OperationCombineLatest.java b/rxjava-core/src/main/java/rx/operators/OperationCombineLatest.java index 87d0cbe0c96..382f8ba8aa7 100644 --- a/rxjava-core/src/main/java/rx/operators/OperationCombineLatest.java +++ b/rxjava-core/src/main/java/rx/operators/OperationCombineLatest.java @@ -59,7 +59,7 @@ public static Func1, Subscription> combineLatest(Observa } /** - * @see #combineLatest(Observable w0, Observable w1, Func2 combineLatestFunction) + * @see #combineLatest(Observable w0, Observable w1, Func2 combineLatestFunction) */ public static Func1, Subscription> combineLatest(Observable w0, Observable w1, Observable w2, Func3 combineLatestFunction) { Aggregator a = new Aggregator(Functions.fromFunc(combineLatestFunction)); @@ -70,7 +70,7 @@ public static Func1, Subscription> combineLatest(Obs } /** - * @see #combineLatest(Observable w0, Observable w1, Func2 combineLatestFunction) + * @see #combineLatest(Observable w0, Observable w1, Func2 combineLatestFunction) */ public static Func1, Subscription> combineLatest(Observable w0, Observable w1, Observable w2, Observable w3, Func4 combineLatestFunction) { Aggregator a = new Aggregator(Functions.fromFunc(combineLatestFunction));