Author: simonetripodi
Date: Fri Sep 16 21:53:57 2011
New Revision: 1171817
URL: http://svn.apache.org/viewvc?rev=1171817&view=rev
Log:
removed trailing spaces
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=1171817&r1=1171816&r2=1171817&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
Fri Sep 16 21:53:57 2011
@@ -25,7 +25,7 @@ import java.sql.SQLException;
import javax.sql.DataSource;
/**
- * Executes SQL queries with pluggable strategies for handling
+ * Executes SQL queries with pluggable strategies for handling
* <code>ResultSet</code>s. This class is thread safe.
*
* @see ResultSetHandler
@@ -61,7 +61,7 @@ public class QueryRunner extends Abstrac
}
/**
- * Constructor for QueryRunner, allows workaround for Oracle drivers.
Methods that do not take a
+ * Constructor for QueryRunner, allows workaround for Oracle drivers.
Methods that do not take a
* <code>Connection</code> parameter will retrieve connections from this
* <code>DataSource</code>.
*
@@ -231,7 +231,7 @@ public class QueryRunner extends Abstrac
* @param <T> The type of object that the handler returns
* @param sql The SQL statement to execute.
* @param param The replacement parameter.
- * @param rsh The handler used to create the result object from
+ * @param rsh The handler used to create the result object from
* the <code>ResultSet</code>.
*
* @return An object generated by the handler.
@@ -247,14 +247,14 @@ public class QueryRunner extends Abstrac
/**
* Executes the given SELECT SQL query and returns a result object.
- * The <code>Connection</code> is retrieved from the
+ * The <code>Connection</code> is retrieved from the
* <code>DataSource</code> set in the constructor.
* @param <T> The type of object that the handler returns
* @param sql The SQL statement to execute.
- * @param params Initialize the PreparedStatement's IN parameters with
+ * @param params Initialize the PreparedStatement's IN parameters with
* this array.
*
- * @param rsh The handler used to create the result object from
+ * @param rsh The handler used to create the result object from
* the <code>ResultSet</code>.
*
* @return An object generated by the handler.
@@ -270,13 +270,13 @@ public class QueryRunner extends Abstrac
/**
* Executes the given SELECT SQL query and returns a result object.
- * The <code>Connection</code> is retrieved from the
+ * The <code>Connection</code> is retrieved from the
* <code>DataSource</code> set in the constructor.
* @param <T> The type of object that the handler returns
* @param sql The SQL statement to execute.
- * @param rsh The handler used to create the result object from
+ * @param rsh The handler used to create the result object from
* the <code>ResultSet</code>.
- * @param params Initialize the PreparedStatement's IN parameters with
+ * @param params Initialize the PreparedStatement's IN parameters with
* this array.
* @return An object generated by the handler.
* @throws SQLException if a database access error occurs
@@ -293,9 +293,9 @@ public class QueryRunner extends Abstrac
* <code>DataSource</code> set in the constructor.
* @param <T> The type of object that the handler returns
* @param sql The SQL statement to execute.
- * @param rsh The handler used to create the result object from
+ * @param rsh The handler used to create the result object from
* the <code>ResultSet</code>.
- *
+ *
* @return An object generated by the handler.
* @throws SQLException if a database access error occurs
*/
@@ -406,7 +406,7 @@ public class QueryRunner extends Abstrac
* from the <code>DataSource</code> set in the constructor. This
* <code>Connection</code> must be in auto-commit mode or the update will
* not be saved.
- *
+ *
* @param sql The SQL statement to execute.
* @throws SQLException if a database access error occurs
* @return The number of rows updated.
@@ -419,9 +419,9 @@ public class QueryRunner extends Abstrac
/**
* Executes the given INSERT, UPDATE, or DELETE SQL statement with
- * a single replacement parameter. The <code>Connection</code> is
+ * a single replacement parameter. The <code>Connection</code> is
* retrieved from the <code>DataSource</code> set in the constructor.
- * This <code>Connection</code> must be in auto-commit mode or the
+ * This <code>Connection</code> must be in auto-commit mode or the
* update will not be saved.
*
* @param sql The SQL statement to execute.