--- jsr166/src/test/loops/ListBash.java 2015/01/15 18:34:19 1.16 +++ jsr166/src/test/loops/ListBash.java 2016/10/23 03:03:23 1.17 @@ -257,7 +257,7 @@ public class ListBash { static List newList(Class cl, boolean synch) { try { - List s = (List) cl.newInstance(); + List s = (List) cl.getConstructor().newInstance(); if (synch) s = Collections.synchronizedList(s); if (!s.isEmpty())