static Map> cloneMultiMapToTreeMap(MultiMap m) { if (m == null) null; synchronized(m) { ret new TreeMap(m.data); } }