mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 09:20:37 +07:00
14 lines
352 B
Java
14 lines
352 B
Java
// "Replace 'addAll/putAll' method with parametrized constructor call" "false"
|
|
import java.lang.String;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.HashSet;
|
|
import java.util.Arrays;
|
|
|
|
|
|
class C {
|
|
void m() {
|
|
final List<String> list = new ArrayList<>();
|
|
Boolean.hashCode(list.add<caret>All(Arrays.asList(".", ",")));
|
|
}
|
|
} |