static SortedMap synchroSortedMap(SortedMap map) { ifdef OurSyncCollections ret new SynchronizedSortedMap(map); endifdef ifndef OurSyncCollections ret Collections.synchronizedSortedMap(map); endifndef }