Skip to content

Commit 63ae2b1

Browse files
committed
Finished RefCount - all tests pass
1 parent bc7361f commit 63ae2b1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

rxjava-core/src/main/java/rx/observables/ConnectableObservable.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ public Observable<T> refCount() {
6161
* Returns an observable sequence that stays connected to the source as long
6262
* as there is at least one subscription to the observable sequence.
6363
* @return a {@link Observable}
64+
* @param that a {@link ConnectableObservable}
6465
*/
6566
public static <T> Observable<T> refCount(ConnectableObservable<T> that) {
6667
return Observable.create(OperationRefCount.refCount(that));

0 commit comments

Comments
 (0)