()
| 93 | } |
| 94 | |
| 95 | private HashMultimap() { |
| 96 | super(new HashMap<K, Collection<V>>()); |
| 97 | } |
| 98 | |
| 99 | private HashMultimap(int expectedKeys, int expectedValuesPerKey) { |
| 100 | super(Maps.<K, Collection<V>>newHashMapWithExpectedSize(expectedKeys)); |
nothing calls this directly
no test coverage detected