()
| 74 | } |
| 75 | |
| 76 | private HashMultiset() { |
| 77 | super(new HashMap<E, Count>()); |
| 78 | } |
| 79 | |
| 80 | private HashMultiset(int distinctElements) { |
| 81 | super(Maps.<E, Count>newHashMapWithExpectedSize(distinctElements)); |
nothing calls this directly
no test coverage detected