You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by oy...@apache.org on 2007/09/21 14:12:32 UTC

svn commit: r578082 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/derbynet/PrepareStatementTest.java

Author: oysteing
Date: Fri Sep 21 05:12:31 2007
New Revision: 578082

URL: http://svn.apache.org/viewvc?rev=578082&view=rev
Log:
Fixed Class javadoc

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/derbynet/PrepareStatementTest.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/derbynet/PrepareStatementTest.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/derbynet/PrepareStatementTest.java?rev=578082&r1=578081&r2=578082&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/derbynet/PrepareStatementTest.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/derbynet/PrepareStatementTest.java Fri Sep 21 05:12:31 2007
@@ -42,12 +42,12 @@
 import org.apache.derbyTesting.junit.JDBC;
 
 /**
- * This Junit test class tests the JDBC PreparedStatement.  This test is a
- * Junit of the old prepStmt.java test.  This test tested prepared statements
- * in client/server context, and many of the test cases is specifically
- * testing corner cases in client/server communication.  However, this Junit
- * test is set up to run as part of both the embedded and client/server test
- * suites.
+ * This Junit test class tests the JDBC PreparedStatement.  This test
+ * is a Junit version of the old prepStmt.java test.  That test tested
+ * prepared statements in client/server context, and many of the test
+ * cases is specifically testing corner cases in client/server
+ * communication.  However, this Junit test is set up to run as part
+ * of both the embedded and client/server test suites.
  */
 
 public class PrepareStatementTest extends BaseJDBCTestCase
@@ -380,7 +380,7 @@
         for (int i = 1; i <= numCols; ++i)
         {
             insertSql.append(" c");
-            insertSql.append(i);;
+            insertSql.append(i);
             insertSql.append((i != numCols) ? ", " : ")");
         }
         insertSql.append("  values (");