(K a, K b)
| 27 | final Comparator<K> comparator = this.comparator != null ? |
| 28 | this.comparator : new Comparator<K>() { |
| 29 | public int compare(K a, K b) { |
| 30 | return ((Comparable) a).compareTo(b); |
| 31 | } |
| 32 | }; |
| 33 | set = new TreeSet(new Comparator<MyEntry<K,V>>() { |
| 34 | public int compare(MyEntry<K,V> a, MyEntry<K,V> b) { |