Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 91337 invoked from network); 24 May 2007 19:10:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 24 May 2007 19:10:23 -0000 Received: (qmail 29469 invoked by uid 500); 24 May 2007 19:10:28 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 29435 invoked by uid 500); 24 May 2007 19:10:28 -0000 Mailing-List: contact derby-commits-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Derby Development" List-Id: Delivered-To: mailing list derby-commits@db.apache.org Received: (qmail 29404 invoked by uid 99); 24 May 2007 19:10:28 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 May 2007 12:10:28 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 May 2007 12:10:22 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id BC1E31A981A; Thu, 24 May 2007 12:10:02 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r541394 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/util/T_ConsistencyChecker.java Date: Thu, 24 May 2007 19:10:02 -0000 To: derby-commits@db.apache.org From: djd@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070524191002.BC1E31A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: djd Date: Thu May 24 12:10:01 2007 New Revision: 541394 URL: http://svn.apache.org/viewvc?view=rev&rev=541394 Log: Remove unused fields from T_ConsistencyChecker. Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/util/T_ConsistencyChecker.java Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/util/T_ConsistencyChecker.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/util/T_ConsistencyChecker.java?view=diff&rev=541394&r1=541393&r2=541394 ============================================================================== --- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/util/T_ConsistencyChecker.java (original) +++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/util/T_ConsistencyChecker.java Thu May 24 12:10:01 2007 @@ -23,34 +23,23 @@ import org.apache.derby.iapi.error.StandardException; - -import org.apache.derby.iapi.sql.dictionary.DataDictionary; -import org.apache.derby.iapi.sql.dictionary.SchemaDescriptor; -import org.apache.derby.iapi.sql.dictionary.TableDescriptor; +import org.apache.derby.iapi.reference.SQLState; +import org.apache.derby.iapi.services.context.ContextService; +import org.apache.derby.iapi.services.io.FormatableBitSet; +import org.apache.derby.iapi.sql.conn.LanguageConnectionContext; +import org.apache.derby.iapi.sql.depend.DependencyManager; import org.apache.derby.iapi.sql.dictionary.ColumnDescriptor; import org.apache.derby.iapi.sql.dictionary.ColumnDescriptorList; import org.apache.derby.iapi.sql.dictionary.ConglomerateDescriptor; - -import org.apache.derby.iapi.sql.depend.DependencyManager; - -import org.apache.derby.iapi.reference.SQLState; - +import org.apache.derby.iapi.sql.dictionary.DataDictionary; +import org.apache.derby.iapi.sql.dictionary.SchemaDescriptor; +import org.apache.derby.iapi.sql.dictionary.TableDescriptor; import org.apache.derby.iapi.sql.execute.ExecRow; -import org.apache.derby.iapi.sql.execute.ExecutionContext; - -import org.apache.derby.iapi.types.DataValueFactory; -import org.apache.derby.iapi.types.DataTypeDescriptor; - -import org.apache.derby.iapi.sql.conn.LanguageConnectionContext; - +import org.apache.derby.iapi.store.access.ConglomerateController; +import org.apache.derby.iapi.store.access.ScanController; import org.apache.derby.iapi.store.access.TransactionController; +import org.apache.derby.iapi.types.DataTypeDescriptor; import org.apache.derby.iapi.types.RowLocation; -import org.apache.derby.iapi.store.access.ScanController; -import org.apache.derby.iapi.store.access.ConglomerateController; - -import org.apache.derby.iapi.services.context.ContextService; - -import org.apache.derby.iapi.services.io.FormatableBitSet; /** * This class has methods for corrupting a database. @@ -67,8 +56,6 @@ private DataDictionary dd; private TransactionController tc; private LanguageConnectionContext lcc; - private DataValueFactory dvf; - private ExecutionContext ec; private String indexName; private String schemaName; private String tableName; @@ -256,11 +243,6 @@ tc = lcc.getTransactionExecute(); dd = lcc.getDataDictionary(); - - dvf = lcc.getDataValueFactory(); - - ec = (ExecutionContext) - (ContextService.getContext(ExecutionContext.CONTEXT_ID)); } /* Get the various descriptors */