Creates a mutable , empty TreeMap instance using the natural ordering of its elements. Note: if mutability is not required, use ImmutableSortedMap#of() instead. Note for Java 7 and later: this method is now unnecessary and should be treated as deprecated.
()
| 341 | |
| 342 | |
| 343 | public static <K extends Comparable, V> TreeMap<K, V> newTreeMap() { |
| 344 | return new TreeMap<K, V>(); |
| 345 | } |
| 346 | |
| 347 | /** |
| 348 | * Creates a <i>mutable</i> {@code TreeMap} instance with the same mappings as |
no outgoing calls
no test coverage detected