Creates a mutable , empty, insertion-ordered LinkedHashMap instance. Note: if mutability is not required, use ImmutableMap#of() instead. Note for Java 7 and later: this method is now unnecessary and should be treated as deprecated. Instead, use the {@code
()
| 244 | * @return a new, empty {@code LinkedHashMap} |
| 245 | */ |
| 246 | public static <K, V> LinkedHashMap<K, V> newLinkedHashMap() { |
| 247 | return new LinkedHashMap<K, V>(); |
| 248 | } |
| 249 | |
| 250 | /** |
| 251 | * Creates a {@code LinkedHashMap} instance, with a high enough |
no outgoing calls
no test coverage detected