static Map synchroMap() { ret synchroHashMap(); } static Map synchroMap(Map map) { ifdef OurSyncCollections ret new SynchronizedMap(map); endifdef ifndef OurSyncCollections ret Collections.synchronizedMap(map); endifndef }