(Comparator<K> comparator)
| 19 | private transient TreeSet<MyEntry<K,V>> set; |
| 20 | |
| 21 | public TreeMap(Comparator<K> comparator) { |
| 22 | this.comparator = comparator; |
| 23 | initializeSet(); |
| 24 | } |
| 25 | |
| 26 | private void initializeSet() { |
| 27 | final Comparator<K> comparator = this.comparator != null ? |
nothing calls this directly
no test coverage detected