static ArrayList cloneListSynchronizingOn(Collection l, O mutex) { if (l == null) ret new L; synchronized(mutex) { ret new ArrayList(l); } }