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