static Set synchronizedSet() { ret synchroHashSet(); } static Set synchronizedSet(Set set) { ifdef OurSyncCollections ret new SynchronizedSet(set); endifdef ifndef OurSyncCollections ret Collections.synchronizedSet(set); endifndef }