MCPcopy Index your code
hub / github.com/jankotek/mapdb / writeReplace

Method writeReplace

src/main/java/org/mapdb/BTreeMapJava.java:538–544  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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>> {

Callers

nothing calls this directly

Calls 1

addMethod · 0.45

Tested by

no test coverage detected