[java-dfa] Fix testdata

GitOrigin-RevId: 3c0c28c9a602a5139bb1f27fc905073454c90e02
This commit is contained in:
Tagir Valeev
2022-11-15 11:50:26 +00:00
committed by intellij-monorepo-bot
parent 5809e089ab
commit 9d71e3b7ca
@@ -10,7 +10,7 @@ class Clazz {
Map<String, Integer> aux = list.stream().collect(() -> new HashMap<>(), (a, b) -> a.put(b, b.length()), Map::putAll);
if (<warning descr="Condition 'aux.isEmpty()' is always 'false'">aux.isEmpty()</warning>) {}
Map<String, Integer> aux2 = list2.stream().collect(() -> new HashMap<>(), (a, b) -> a.put(b, b.length()), Map::putAll);
if (aux.isEmpty()) {}
if (aux2.isEmpty()) {}
}
public void passNull(Collection<?> c) {