We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa58d36 commit 83d1a4fCopy full SHA for 83d1a4f
src/main/java/io/reactivex/functions/BiConsumer.java
@@ -13,8 +13,6 @@
13
14
package io.reactivex.functions;
15
16
-import io.reactivex.annotations.NonNull;
17
-
18
/**
19
* A functional interface (callback) that accepts two values (of possibly different types).
20
* @param <T1> the first value type
@@ -28,5 +26,5 @@ public interface BiConsumer<T1, T2> {
28
26
* @param t2 the second value
29
27
* @throws Exception on error
30
*/
31
- void accept(@NonNull T1 t1, @NonNull T2 t2) throws Exception;
+ void accept(T1 t1, T2 t2) throws Exception;
32
}
0 commit comments