Author: xor
Date: 2008-11-04 22:35:20 +0000 (Tue, 04 Nov 2008)
New Revision: 23316
Modified:
trunk/plugins/WoT/IdentityInserter.java
Log:
Add the FIXME which I wanted to add in 23275. Sorry.
Modified: trunk/plugins/WoT/IdentityInserter.java
===================================================================
--- trunk/plugins/WoT/IdentityInserter.java 2008-11-04 21:54:50 UTC (rev
23315)
+++ trunk/plugins/WoT/IdentityInserter.java 2008-11-04 22:35:20 UTC (rev
23316)
@@ -76,6 +76,7 @@
ObjectSet<OwnIdentity> identities =
OwnIdentity.getAllOwnIdentities(db);
while(identities.hasNext()) {
OwnIdentity identity = identities.next();
+ /* FIXME: Where is the synchronization? */
if(identity.needsInsert()) {
try {
Logger.debug(this, "Starting
insert of "+identity.getNickName() + " (" + identity.getInsertURI().toString()
+ ")");
@@ -118,7 +119,7 @@
* @throws InsertException
*/
public void insert(OwnIdentity identity) throws
TransformerConfigurationException, FileNotFoundException,
ParserConfigurationException, TransformerException, IOException,
Db4oIOException, DatabaseClosedException, InvalidParameterException,
InsertException {
-
+ /* FIXME: Where is the synchronization? */
Bucket tempB = tBF.makeBucket(1);
OutputStream os = tempB.getOutputStream();
FreenetURI iURI;