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
()
| 258 | |
| 259 | |
| 260 | public static <K, V> LinkedHashMap<K, V> newLinkedHashMap() { |
| 261 | return new LinkedHashMap<K, V>(); |
| 262 | } |
| 263 | |
| 264 | /** |
| 265 | * Creates a {@code LinkedHashMap} instance, with a high enough |
no outgoing calls
no test coverage detected