Creates a new, empty LinkedHashMultiset using the default initial capacity.
()
| 51 | */ |
| 52 | |
| 53 | public static <E> LinkedHashMultiset<E> create() { |
| 54 | return new LinkedHashMultiset<E>(); |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Creates a new, empty {@code LinkedHashMultiset} with the specified expected |
no test coverage detected