update testdata

This commit is contained in:
Anna Kozlova
2018-05-12 16:36:59 +02:00
parent a06147e3fa
commit 7ef04408cf
@@ -1,7 +1,7 @@
import java.util.*;
enum En {
A(new Y<>((<warning descr="Casting 'new ArrayList<>()' to 'List' is redundant">List</warning>) new ArrayList<>()));
A(new Y<>((List) new ArrayList<>()));
En(Y<List<Object>> list) {
}