From d9a2e6067b10e54862b1d51b92408b512fbc5b16 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sat, 1 Apr 2017 16:36:18 -0300 Subject: [PATCH] Remove @NonNull annotations in BiConsumer --- src/main/java/io/reactivex/functions/BiConsumer.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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; }