Author: toad
Date: 2008-04-05 13:51:28 +0000 (Sat, 05 Apr 2008)
New Revision: 19028
Modified:
trunk/freenet/src/freenet/store/FreenetStore.java
Log:
Javadoc style fix from Daniel Cheng.
Modified: trunk/freenet/src/freenet/store/FreenetStore.java
===================================================================
--- trunk/freenet/src/freenet/store/FreenetStore.java 2008-04-05 13:48:15 UTC
(rev 19027)
+++ trunk/freenet/src/freenet/store/FreenetStore.java 2008-04-05 13:51:28 UTC
(rev 19028)
@@ -22,9 +22,14 @@
*/
StorableBlock fetch(byte[] routingKey, byte[] fullKey, boolean
dontPromote) throws IOException;
- /** Store a block.
- * @throws KeyCollisionException If the key already exists but has
different contents.
- * @param ignoreAndOverwrite If true, overwrite old content rather than
throwing a KeyCollisionException.
+ /**
+ * Store a block.
+ *
+ * @throws KeyCollisionException
+ * If the key already exists but has different contents.
+ * @param overwrite
+ * If true, overwrite old content rather than throwing a
+ * <code>KeyCollisionException</code>.
*/
public void put(StorableBlock block, byte[] routingkey, byte[] fullKey,
byte[] data, byte[] header,
boolean overwrite) throws IOException, KeyCollisionException;