Intended to be called only from TreeSet.readObject
(int size, java.io.ObjectInputStream s, V defaultVal)
| 1561 | |
| 1562 | /** Intended to be called only from TreeSet.readObject */ |
| 1563 | void readTreeSet(int size, java.io.ObjectInputStream s, V defaultVal) |
| 1564 | throws java.io.IOException, ClassNotFoundException { |
| 1565 | buildFromSorted(size, null, s, defaultVal); |
| 1566 | } |
| 1567 | |
| 1568 | /** Intended to be called only from TreeSet.addAll */ |
| 1569 | void addAllForTreeSet(SortedSet<K> set, V defaultVal) { |
nothing calls this directly
no test coverage detected