Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 28023 invoked from network); 8 Apr 2009 03:03:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 8 Apr 2009 03:03:15 -0000 Received: (qmail 50993 invoked by uid 500); 8 Apr 2009 03:03:14 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 50934 invoked by uid 500); 8 Apr 2009 03:03:14 -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 50925 invoked by uid 99); 8 Apr 2009 03:03:14 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Apr 2009 03:03:14 +0000 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; Wed, 08 Apr 2009 03:03:14 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1339F2388A35; Wed, 8 Apr 2009 03:02:54 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r763089 - /directory/apacheds/branches/ldif-partition/core/src/main/java/org/apache/directory/server/core/collective/CollectiveAttributesSchemaChecker.java Date: Wed, 08 Apr 2009 03:02:53 -0000 To: commits@directory.apache.org From: akarasulu@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090408030254.1339F2388A35@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: akarasulu Date: Wed Apr 8 03:02:53 2009 New Revision: 763089 URL: http://svn.apache.org/viewvc?rev=763089&view=rev Log: cleanup unused field Modified: directory/apacheds/branches/ldif-partition/core/src/main/java/org/apache/directory/server/core/collective/CollectiveAttributesSchemaChecker.java Modified: directory/apacheds/branches/ldif-partition/core/src/main/java/org/apache/directory/server/core/collective/CollectiveAttributesSchemaChecker.java URL: http://svn.apache.org/viewvc/directory/apacheds/branches/ldif-partition/core/src/main/java/org/apache/directory/server/core/collective/CollectiveAttributesSchemaChecker.java?rev=763089&r1=763088&r2=763089&view=diff ============================================================================== --- directory/apacheds/branches/ldif-partition/core/src/main/java/org/apache/directory/server/core/collective/CollectiveAttributesSchemaChecker.java (original) +++ directory/apacheds/branches/ldif-partition/core/src/main/java/org/apache/directory/server/core/collective/CollectiveAttributesSchemaChecker.java Wed Apr 8 03:02:53 2009 @@ -51,12 +51,10 @@ */ public class CollectiveAttributesSchemaChecker { - private PartitionNexus nexus = null; private AttributeTypeRegistry attrTypeRegistry = null; public CollectiveAttributesSchemaChecker( PartitionNexus nexus, AttributeTypeRegistry attrTypeRegistry ) { - this.nexus = nexus; this.attrTypeRegistry = attrTypeRegistry; }