static HashSet cloneHashSet(Collection set) { if (set == null) ret new HashSet; synchronized(collectionMutex(set)) { new HashSet s; s.addAll(set); ret s; } }