You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ka...@apache.org on 2010/09/18 19:40:38 UTC

svn commit: r998500 - /directory/apacheds/trunk/xdbm-partition/src/main/java/org/apache/directory/server/xdbm/AbstractStore.java

Author: kayyagari
Date: Sat Sep 18 17:40:37 2010
New Revision: 998500

URL: http://svn.apache.org/viewvc?rev=998500&view=rev
Log:
o disabled the flag used for checking existence of an entry before adding it

Modified:
    directory/apacheds/trunk/xdbm-partition/src/main/java/org/apache/directory/server/xdbm/AbstractStore.java

Modified: directory/apacheds/trunk/xdbm-partition/src/main/java/org/apache/directory/server/xdbm/AbstractStore.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/xdbm-partition/src/main/java/org/apache/directory/server/xdbm/AbstractStore.java?rev=998500&r1=998499&r2=998500&view=diff
==============================================================================
--- directory/apacheds/trunk/xdbm-partition/src/main/java/org/apache/directory/server/xdbm/AbstractStore.java (original)
+++ directory/apacheds/trunk/xdbm-partition/src/main/java/org/apache/directory/server/xdbm/AbstractStore.java Sat Sep 18 17:40:37 2010
@@ -143,7 +143,7 @@ public abstract class AbstractStore<E, I
      * add() method. This flag needs to be enabled only in cases where interceptor chain
      * is not used or not yet effective at the time of adding entries into this store.
      */
-    private boolean checkHasEntryDuringAdd = true;
+    private boolean checkHasEntryDuringAdd = false;
 
     public void init( SchemaManager schemaManager ) throws Exception
     {