mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: 93c8954fa9ac83877c50d5ddb2ec2780e4ba980d
61 lines
1.6 KiB
Java
61 lines
1.6 KiB
Java
import java.util.*;
|
|
|
|
class EmptyCollection {
|
|
void testEmptyListAsSingleton() {
|
|
List<Throwable> exceptions = Collections.emptyList();
|
|
do {
|
|
try {
|
|
System.out.println("foo");
|
|
}
|
|
catch (Throwable e) {
|
|
if (exceptions == Collections.<Throwable>emptyList()) {
|
|
exceptions = new ArrayList<>();
|
|
}
|
|
exceptions.add(e); // no immutable list is modified warning
|
|
}
|
|
}
|
|
while (true);
|
|
}
|
|
|
|
void testEmptyMapField() {
|
|
Map<String, String> map = Collections.emptyMap();
|
|
if (<warning descr="Condition 'map == Collections.EMPTY_MAP' is always 'true'">map == Collections.EMPTY_MAP</warning>) {}
|
|
if (map.equals(Collections.EMPTY_MAP)) {}
|
|
if (<warning descr="Condition 'map == Collections.EMPTY_SET' is always 'false'">map == Collections.EMPTY_SET</warning>) {}
|
|
}
|
|
|
|
void test() {
|
|
List<String> list = fill(new ArrayList<String>());
|
|
for(String s : list) {
|
|
System.out.println(s);
|
|
}
|
|
list = fill(Collections.<String>emptyList());
|
|
if (<warning descr="Condition 'list.isEmpty()' is always 'true'">list.isEmpty()</warning>) {
|
|
|
|
}
|
|
}
|
|
|
|
void testAddToSet() {
|
|
Set<String> set = new HashSet<>();
|
|
if (<warning descr="Condition 'set.add(\"1\")' is always 'true'">set.add("1")</warning>) {
|
|
System.out.println("added");
|
|
}
|
|
}
|
|
|
|
static List<String> fill(List<String> list) {
|
|
list.add("foo");
|
|
return list;
|
|
}
|
|
|
|
void custom() {
|
|
SomeDict dictionary = new SomeDict();
|
|
if (dictionary.contains("aaa")) {}
|
|
}
|
|
}
|
|
class SomeDict extends ArrayList<String> {
|
|
|
|
public SomeDict() {
|
|
add("aaa");
|
|
add("bbb");
|
|
}
|
|
} |