Author: jflesch
Date: 2007-07-29 00:38:42 +0000 (Sun, 29 Jul 2007)
New Revision: 14417
Modified:
trunk/apps/Thaw/src/thaw/plugins/index/Index.java
trunk/apps/Thaw/src/thaw/plugins/miniFrost/frostKSK/KSKMessageParser.java
Log:
Fix index insertion : add the insertion directly to the running queue instead
of the pending one
Modified: trunk/apps/Thaw/src/thaw/plugins/index/Index.java
===================================================================
--- trunk/apps/Thaw/src/thaw/plugins/index/Index.java 2007-07-29 00:34:10 UTC
(rev 14416)
+++ trunk/apps/Thaw/src/thaw/plugins/index/Index.java 2007-07-29 00:38:42 UTC
(rev 14417)
@@ -716,7 +716,7 @@
if (indexBrowser != null && indexBrowser.getIndexTree()
!= null)
indexBrowser.getIndexTree().addUpdatingIndex(this);
- queueManager.addQueryToThePendingQueue(put);
+ queueManager.addQueryToTheRunningQueue(put);
put.addObserver(this);
this.addObserver(o);
Modified:
trunk/apps/Thaw/src/thaw/plugins/miniFrost/frostKSK/KSKMessageParser.java
===================================================================
--- trunk/apps/Thaw/src/thaw/plugins/miniFrost/frostKSK/KSKMessageParser.java
2007-07-29 00:34:10 UTC (rev 14416)
+++ trunk/apps/Thaw/src/thaw/plugins/miniFrost/frostKSK/KSKMessageParser.java
2007-07-29 00:38:42 UTC (rev 14417)
@@ -89,7 +89,7 @@
if (frostCrypt == null)
frostCrypt = new FrostCrypt();
- /* frost want a SHA256 hash, but can't check from what is comes
:p */
+ /* frost wants a SHA256 hash, but can't check from what is
comes :p */
this.messageId =
frostCrypt.computeChecksumSHA256(getSignedContent());
if (identity == null)