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 fu...@apache.org on 2007/02/24 07:58:35 UTC

svn commit: r511229 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/ResultSetTest.java

Author: fuzzylogic
Date: Fri Feb 23 22:58:35 2007
New Revision: 511229

URL: http://svn.apache.org/viewvc?view=rev&rev=511229
Log:
Fix javadoc errors in ResultSetTest in jdbc4 suite

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/ResultSetTest.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/ResultSetTest.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/ResultSetTest.java?view=diff&rev=511229&r1=511228&r2=511229
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/ResultSetTest.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/ResultSetTest.java Fri Feb 23 22:58:35 2007
@@ -1375,7 +1375,6 @@
     /**
      * Prepare commonly used statement to insert a row.
      *
-     * @param con connection to database
      * @param colName name of the column to insert into
      */
     private PreparedStatement prep(String colName)
@@ -1387,7 +1386,6 @@
     /**
      * Fetch the specified row for update.
      *
-     * @param con connection to database
      * @param colName name of the column to fetch
      * @param key identifier for row to fetch
      * @return a <code>ResultSet</code> with zero or one row, depending on
@@ -1405,7 +1403,6 @@
     /**
      * Fetch the specified row.
      *
-     * @param con connection to database
      * @param colName name of the column to fetch
      * @param key identifier for row to fetch
      * @return a <code>ResultSet</code> with zero or one row, depending on