Skip to content

Commit

Permalink
eliminate javadoc compiler warnings, add "since" stub
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidMGross committed Aug 7, 2015
1 parent 97747fb commit ad1fbc2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/main/java/rx/Observable.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,13 @@ public interface Operator<R, T> extends Func1<Subscriber<? super R>, Subscriber<
}

/**
* Passes all emitted values from {@code this} Observable to the provided {@link ConversionFunc} to be
* collected and returned as a single value. Note that it is legal for a {@link ConversionFunc} to
* return an Observable (enabling chaining).
* Passes all emitted values from this Observable to the provided conversion function to be collected and
* returned as a single value. Note that it is legal for a conversion function to return an Observable
* (enabling chaining).
*
* @param conversion a function that converts from this {@code Observable<T>} to an {@code R}
* @return an instance of R created by the provided Conversion
* @return an instance of R created by the provided conversion function
* @since (if this graduates from Experimental/Beta to supported, replace this parenthetical with the release number)
*/
@Experimental
public <R> R x(Func1<? super OnSubscribe<T>, ? extends R> conversion) {
Expand Down

0 comments on commit ad1fbc2

Please sign in to comment.