static L getAndClearList(Collection l) { if (l == null) ret emptyList(); synchronized(collectionMutex(l)) { L out = cloneList(l); l.clear(); ret out; } }