Creates a new, empty ArrayListMultimap with the default initial capacities.
()
| 75 | * capacities. |
| 76 | */ |
| 77 | public static <K, V> ArrayListMultimap<K, V> create() { |
| 78 | return new ArrayListMultimap<K, V>(); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Constructs an empty {@code ArrayListMultimap} with enough capacity to hold |
no outgoing calls
no test coverage detected