static TreeSet cloneTreeSet(Set set) { if (set == null) ret new TreeSet; synchronized(collectionMutex(set)) { TreeSet s = new TreeSet(set); s.addAll(set); ret s; } }