```java ConcurrentMap<String, Single<String>> map = new ConcurrentHashMap<>(); map.remove("foobar"); ``` The second line will give a `RxReturnValueIgnored` warning (because `remove` returns a `Single<String>`) which is wrong. P.S. The same applies for `put`.