Author: toad
Date: 2008-06-20 22:26:01 +0000 (Fri, 20 Jun 2008)
New Revision: 20540
Modified:
branches/db4o/freenet/src/freenet/support/Db4oSet.java
Log:
Allow Db4oSet to be used elsewhere in the code
Modified: branches/db4o/freenet/src/freenet/support/Db4oSet.java
===================================================================
--- branches/db4o/freenet/src/freenet/support/Db4oSet.java 2008-06-20
22:25:37 UTC (rev 20539)
+++ branches/db4o/freenet/src/freenet/support/Db4oSet.java 2008-06-20
22:26:01 UTC (rev 20540)
@@ -12,7 +12,7 @@
private final Db4oMap map;
private final NullObject object = new NullObject();
- Db4oSet(ObjectContainer container, int size) {
+ public Db4oSet(ObjectContainer container, int size) {
map = container.ext().collections().newHashMap(size);
}