Skip to content

Commit a61ae64

Browse files
3.x: Add missing @NonNull annotation to Maybe type argument (#7436)
1 parent 8e6bc11 commit a61ae64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/reactivex/rxjava3/core/Maybe.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
* @since 2.0
111111
* @see io.reactivex.rxjava3.observers.DisposableMaybeObserver
112112
*/
113-
public abstract class Maybe<T> implements MaybeSource<T> {
113+
public abstract class Maybe<@NonNull T> implements MaybeSource<T> {
114114

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

0 commit comments

Comments
 (0)