(T obj)
| 159 | } |
| 160 | |
| 161 | @SuppressWarnings("unchecked") |
| 162 | private static <T> Comparable<T> toComparable(T obj) { |
| 163 | if (obj == null) { |
| 164 | throw new NullPointerException(); |
| 165 | } |
| 166 | return (Comparable) obj; |
| 167 | } |
| 168 | |
| 169 | static class AbstractMapIterator <K,V> { |
| 170 | TreeMap<K, V> backingMap; |
no outgoing calls
no test coverage detected