diff --git a/src/main/java/io/reactivex/functions/BiConsumer.java b/src/main/java/io/reactivex/functions/BiConsumer.java index bd382a1956..6b147ae0b0 100644 --- a/src/main/java/io/reactivex/functions/BiConsumer.java +++ b/src/main/java/io/reactivex/functions/BiConsumer.java @@ -13,8 +13,6 @@ package io.reactivex.functions; -import io.reactivex.annotations.NonNull; - /** * A functional interface (callback) that accepts two values (of possibly different types). * @param the first value type @@ -28,5 +26,5 @@ public interface BiConsumer { * @param t2 the second value * @throws Exception on error */ - void accept(@NonNull T1 t1, @NonNull T2 t2) throws Exception; + void accept(T1 t1, T2 t2) throws Exception; }