// "Replace 'addAll()' call with parametrized constructor call" "true" import java.util.ArrayList; import java.util.Collection; import java.util.List; public class Test { void test(Object c) { List other, list = new ArrayList<>(); //noinspection unchecked list.addAll((Collection) c); System.out.println(list); } }