static L synchroList() { ret synchroList(new ArrayList()); } static L synchroList(L l) { ifdef OurSyncCollections ret new SynchronizedList(l); endifdef ifndef OurSyncCollections ret Collections.synchronizedList(l); endifndef }