You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2013/12/18 06:23:06 UTC

svn commit: r1551843 - /directory/mavibot/trunk/mavibot/src/main/java/org/apache/directory/mavibot/btree/BTree.java

Author: elecharny
Date: Wed Dec 18 05:23:06 2013
New Revision: 1551843

URL: http://svn.apache.org/r1551843
Log:
Removed a commented method

Modified:
    directory/mavibot/trunk/mavibot/src/main/java/org/apache/directory/mavibot/btree/BTree.java

Modified: directory/mavibot/trunk/mavibot/src/main/java/org/apache/directory/mavibot/btree/BTree.java
URL: http://svn.apache.org/viewvc/directory/mavibot/trunk/mavibot/src/main/java/org/apache/directory/mavibot/btree/BTree.java?rev=1551843&r1=1551842&r2=1551843&view=diff
==============================================================================
--- directory/mavibot/trunk/mavibot/src/main/java/org/apache/directory/mavibot/btree/BTree.java (original)
+++ directory/mavibot/trunk/mavibot/src/main/java/org/apache/directory/mavibot/btree/BTree.java Wed Dec 18 05:23:06 2013
@@ -99,21 +99,6 @@ public interface BTree<K, V>
 
 
     /**
-     * Insert an entry in the BTree.
-     * <p>
-     * We will replace the value if the provided key already exists in the
-     * btree.
-     *
-     * @param key Inserted key
-     * @param value Inserted value
-     * @param revision the revision
-     * @return Existing value, if any.
-     * @throws IOException TODO
-     */
-    //InsertResult<K, V> insert( K key, V value, long revision ) throws IOException;
-
-
-    /**
      * Delete the entry which key is given as a parameter. If the entry exists, it will
      * be removed from the tree, the old tuple will be returned. Otherwise, null is returned.
      *