Intended to be called only from TreeSet.addAll
(SortedSet<K> set, V defaultVal)
| 1567 | |
| 1568 | /** Intended to be called only from TreeSet.addAll */ |
| 1569 | void addAllForTreeSet(SortedSet<K> set, V defaultVal) { |
| 1570 | try { |
| 1571 | buildFromSorted(set.size(), set.iterator(), null, defaultVal); |
| 1572 | } catch (java.io.IOException cannotHappen) { |
| 1573 | } catch (ClassNotFoundException cannotHappen) { |
| 1574 | } |
| 1575 | } |
| 1576 | |
| 1577 | |
| 1578 | /** |
nothing calls this directly
no test coverage detected