Removed a few completed @todo comments

This commit is contained in:
Joshua Kissoon 2014-04-25 16:21:23 +05:30
parent 7c24ed7cff
commit 6253ad0ca6
3 changed files with 0 additions and 7 deletions

View File

@ -133,8 +133,6 @@ public class Kademlia
*
* @throws java.io.FileNotFoundException
* @throws java.lang.ClassNotFoundException
*
* @todo Boot up this Kademlia instance from a saved file state
*/
public static Kademlia loadFromFile(String ownerId) throws FileNotFoundException, IOException, ClassNotFoundException
{
@ -151,8 +149,6 @@ public class Kademlia
*
* @throws java.io.FileNotFoundException
* @throws java.lang.ClassNotFoundException
*
* @todo Boot up this Kademlia instance from a saved file state
*/
public static Kademlia loadFromFile(String ownerId, KadConfiguration iconfig) throws FileNotFoundException, IOException, ClassNotFoundException
{

View File

@ -247,7 +247,6 @@ public class ContentLookupOperation implements Operation, Receiver
StorageEntry content = msg.getContent();
System.out.println("Content Received: " + content);
/*@todo Check if the content matches the given criteria */
this.contentFound.add(content);
if (this.contentFound.size() == this.numNodesToQuery)

View File

@ -16,8 +16,6 @@ public interface Operation
* Starts an operation and returns when the operation is finished
*
* @throws kademlia.exceptions.RoutingException
*
* @todo Remove the Object return type, those operations that return things should have a method to return the data
*/
public void execute() throws IOException, RoutingException;
}