Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 46418 invoked from network); 11 May 2008 02:28:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 May 2008 02:28:38 -0000 Received: (qmail 4168 invoked by uid 500); 11 May 2008 02:28:40 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 4111 invoked by uid 500); 11 May 2008 02:28:40 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 4098 invoked by uid 99); 11 May 2008 02:28:40 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 May 2008 19:28:40 -0700 X-ASF-Spam-Status: No, hits=-1999.6 required=10.0 tests=ALL_TRUSTED,SUBJECT_FUZZY_TION X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 May 2008 02:28:02 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C7AD92388A0B; Sat, 10 May 2008 19:28:17 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r655226 - /directory/apacheds/branches/bigbang/jdbm-store/src/main/java/org/apache/directory/server/core/partition/impl/btree/jdbm/JdbmStore.java Date: Sun, 11 May 2008 02:28:17 -0000 To: commits@directory.apache.org From: akarasulu@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080511022817.C7AD92388A0B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: akarasulu Date: Sat May 10 19:28:17 2008 New Revision: 655226 URL: http://svn.apache.org/viewvc?rev=655226&view=rev Log: fix bug introduced in merge causing CCE Modified: directory/apacheds/branches/bigbang/jdbm-store/src/main/java/org/apache/directory/server/core/partition/impl/btree/jdbm/JdbmStore.java Modified: directory/apacheds/branches/bigbang/jdbm-store/src/main/java/org/apache/directory/server/core/partition/impl/btree/jdbm/JdbmStore.java URL: http://svn.apache.org/viewvc/directory/apacheds/branches/bigbang/jdbm-store/src/main/java/org/apache/directory/server/core/partition/impl/btree/jdbm/JdbmStore.java?rev=655226&r1=655225&r2=655226&view=diff ============================================================================== --- directory/apacheds/branches/bigbang/jdbm-store/src/main/java/org/apache/directory/server/core/partition/impl/btree/jdbm/JdbmStore.java (original) +++ directory/apacheds/branches/bigbang/jdbm-store/src/main/java/org/apache/directory/server/core/partition/impl/btree/jdbm/JdbmStore.java Sat May 10 19:28:17 2008 @@ -1136,7 +1136,7 @@ // the entry via the enumeration - it's in there as is for sure for ( Value value : attribute ) { - index.drop( value, id ); + index.drop( value.get(), id ); } existanceIdx.drop( attributeOid, id );