Skip to content

Commit

Permalink
Update src/main/java/io/reactivex/rxjava3/core/Observable.java
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSweers authored Jul 23, 2021
1 parent 0680a45 commit 677eafe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/reactivex/rxjava3/core/Observable.java
Original file line number Diff line number Diff line change
Expand Up @@ -10371,7 +10371,7 @@ public final <R> Observable<R> lift(@NonNull ObservableOperator<? extends R, ? s
@CheckReturnValue
@SchedulerSupport(SchedulerSupport.NONE)
@NonNull
public final <R> Observable<@NonNull R> map(@NonNull Function<? super T, ? extends R> mapper) {
public final <@NonNull R> Observable<R> map(@NonNull Function<? super T, ? extends R> mapper) {
Objects.requireNonNull(mapper, "mapper is null");
return RxJavaPlugins.onAssembly(new ObservableMap<>(this, mapper));
}
Expand Down

0 comments on commit 677eafe

Please sign in to comment.