Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 36599 invoked from network); 15 Apr 2007 13:54:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Apr 2007 13:54:31 -0000 Received: (qmail 70063 invoked by uid 500); 15 Apr 2007 13:54:37 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 70035 invoked by uid 500); 15 Apr 2007 13:54:37 -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 70020 invoked by uid 99); 15 Apr 2007 13:54:37 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 15 Apr 2007 06:54:37 -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; Sun, 15 Apr 2007 06:54:31 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 26B7D1A9838; Sun, 15 Apr 2007 06:54:11 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r528978 - /db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/MultiProbeTableScanResultSet.java Date: Sun, 15 Apr 2007 13:54:11 -0000 To: derby-commits@db.apache.org From: kahatlen@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070415135411.26B7D1A9838@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kahatlen Date: Sun Apr 15 06:54:10 2007 New Revision: 528978 URL: http://svn.apache.org/viewvc?view=rev&rev=528978 Log: Turned some ordinary comments into javadoc comments. Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/MultiProbeTableScanResultSet.java Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/MultiProbeTableScanResultSet.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/MultiProbeTableScanResultSet.java?view=diff&rev=528978&r1=528977&r2=528978 ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/MultiProbeTableScanResultSet.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/MultiProbeTableScanResultSet.java Sun Apr 15 06:54:10 2007 @@ -65,7 +65,7 @@ class MultiProbeTableScanResultSet extends TableScanResultSet implements CursorResultSet { - /* The values with which we will probe the table. */ + /** The values with which we will probe the table. */ protected DataValueDescriptor [] probeValues; /** * The values with which we will probe the table, as they were passed to @@ -74,12 +74,14 @@ */ protected DataValueDescriptor [] origProbeValues; - /* 0-based position of the *next* value to lookup w.r.t. the probe + /** + * 0-based position of the next value to lookup w.r.t. the probe * values list. */ protected int probeValIndex; - /* Whether or not we need to sort the values. If all values were + /** + * Whether or not we need to sort the values. If all values were * specified as literals (as opposed to parameters) then we did the * sort at compile time and so we do not need to do it here. */