mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[java-dfa] Fix testdata
GitOrigin-RevId: 3c0c28c9a602a5139bb1f27fc905073454c90e02
This commit is contained in:
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) {
|
||||
|
||||
Reference in New Issue
Block a user