{@inheritDoc} Creates an empty HashSet for a collection of values for one key. @return a new HashSet containing a collection of values for one key
()
| 116 | */ |
| 117 | |
| 118 | @Override |
| 119 | Set<V> createCollection() { |
| 120 | return Sets.<V>newHashSetWithExpectedSize(expectedValuesPerKey); |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * @serialData expectedValuesPerKey, number of distinct keys, and then for |
nothing calls this directly
no test coverage detected