You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2009/03/07 16:40:21 UTC

svn commit: r751283 - /commons/proper/dbutils/trunk/src/java/org/apache/commons/dbutils/QueryRunner.java

Author: sebb
Date: Sat Mar  7 15:40:20 2009
New Revision: 751283

URL: http://svn.apache.org/viewvc?rev=751283&view=rev
Log:
@param must occur before @throws

Modified:
    commons/proper/dbutils/trunk/src/java/org/apache/commons/dbutils/QueryRunner.java

Modified: commons/proper/dbutils/trunk/src/java/org/apache/commons/dbutils/QueryRunner.java
URL: http://svn.apache.org/viewvc/commons/proper/dbutils/trunk/src/java/org/apache/commons/dbutils/QueryRunner.java?rev=751283&r1=751282&r2=751283&view=diff
==============================================================================
--- commons/proper/dbutils/trunk/src/java/org/apache/commons/dbutils/QueryRunner.java (original)
+++ commons/proper/dbutils/trunk/src/java/org/apache/commons/dbutils/QueryRunner.java Sat Mar  7 15:40:20 2009
@@ -719,8 +719,8 @@
      * Close a <code>ResultSet</code>.  This implementation avoids closing if 
      * null and does <strong>not</strong> suppress any exceptions.  Subclasses
      * can override to provide special handling like logging.
-     * @throws SQLException if a database access error occurs
      * @param rs ResultSet to close
+     * @throws SQLException if a database access error occurs
      * @since DbUtils 1.1
      */
     protected void close(ResultSet rs) throws SQLException {