()
| 536 | } |
| 537 | |
| 538 | Object writeReplace() throws ObjectStreamException { |
| 539 | Set ret = new ConcurrentSkipListSet(); |
| 540 | for(Object e:this){ |
| 541 | ret.add(e); |
| 542 | } |
| 543 | return ret; |
| 544 | } |
| 545 | } |
| 546 | |
| 547 | static final class EntrySet<K1,V1> extends AbstractSet<Map.Entry<K1,V1>> { |