--- jsr166/src/test/loops/SetBash.java 2014/12/18 18:43:22 1.9 +++ jsr166/src/test/loops/SetBash.java 2016/10/23 03:03:24 1.10 @@ -92,7 +92,7 @@ public class SetBash { static Set newSet(Class cl, boolean synch) { try { - Set s = (Set) cl.newInstance(); + Set s = (Set) cl.getConstructor().newInstance(); if (synch) s = Collections.synchronizedSet(s); if (!s.isEmpty())