{@inheritDoc} Creates an empty TreeSet for a collection of values for one key. @return a new TreeSet containing a collection of values for one key
()
| 137 | */ |
| 138 | |
| 139 | @Override |
| 140 | SortedSet<V> createCollection() { |
| 141 | return new TreeSet<V>(valueComparator); |
| 142 | } |
| 143 | |
| 144 | @Override |
| 145 | Collection<V> createCollection(@Nullable K key) { |
nothing calls this directly
no test coverage detected