Author: batosai
Date: 2008-11-10 15:22:24 +0000 (Mon, 10 Nov 2008)
New Revision: 23470
Modified:
trunk/plugins/WoT/Identity.java
Log:
Last time I tried, it didn't work with custom Objects. But feel free to try if
you think it is important. On props too.
Modified: trunk/plugins/WoT/Identity.java
===================================================================
--- trunk/plugins/WoT/Identity.java 2008-11-10 15:19:20 UTC (rev 23469)
+++ trunk/plugins/WoT/Identity.java 2008-11-10 15:22:24 UTC (rev 23470)
@@ -648,7 +648,7 @@
String newContext = context.trim();
if(newContext.length() == 0) throw new
InvalidParameterException("Blank context");
if(!contexts.contains(newContext)) contexts.add(newContext);
- db.store(contexts); /* FIXME: shouldn't we store the whole
identity with cascading enabled???? */
+ db.store(contexts);
updated();
}
@@ -664,7 +664,7 @@
public synchronized void removeContext(String context, ObjectContainer
db) throws InvalidParameterException {
if(contexts.size() == 1) throw new
InvalidParameterException("Only one context left");
contexts.remove(context);
- db.store(contexts); /* FIXME: shouldn't we store the whole
identity with cascading enabled???? */
+ db.store(contexts);
updated();
}
_______________________________________________
cvs mailing list
[email protected]
http://emu.freenetproject.org/cgi-bin/mailman/listinfo/cvs