Skip to content

Commit

Permalink
3.x: Add missing @NonNull annotation to Maybe type argument
Browse files Browse the repository at this point in the history
  • Loading branch information
KarboniteKream committed Jun 4, 2022
1 parent 8e6bc11 commit 3b90edf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/reactivex/rxjava3/core/Maybe.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
* @since 2.0
* @see io.reactivex.rxjava3.observers.DisposableMaybeObserver
*/
public abstract class Maybe<T> implements MaybeSource<T> {
public abstract class Maybe<@NonNull T> implements MaybeSource<T> {

/**
* Runs multiple {@link MaybeSource}s provided by an {@link Iterable} sequence and
Expand Down

0 comments on commit 3b90edf

Please sign in to comment.