Creates a new, empty HashMultiset using the default initial capacity.
()
| 39 | * capacity. |
| 40 | */ |
| 41 | public static <E> HashMultiset<E> create() { |
| 42 | return new HashMultiset<E>(); |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * Creates a new, empty {@code HashMultiset} with the specified expected |
no test coverage detected