static ArrayList cloneList_noSync(Iterable l) { ret l instanceof Collection ? cloneList_noSync((Collection) l) : asList(l); } static ArrayList cloneList_noSync(Collection l) { if (l == null) ret new L; ret new ArrayList(l); }