Author: sebb
Date: Tue Sep 20 20:52:09 2011
New Revision: 1173359

URL: http://svn.apache.org/viewvc?rev=1173359&view=rev
Log:
Cannot have @since 1.1 methods in a class that is @since 1.4

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

Modified: 
commons/proper/dbutils/trunk/src/main/java/org/apache/commons/dbutils/AsyncQueryRunner.java
URL: 
http://svn.apache.org/viewvc/commons/proper/dbutils/trunk/src/main/java/org/apache/commons/dbutils/AsyncQueryRunner.java?rev=1173359&r1=1173358&r2=1173359&view=diff
==============================================================================
--- 
commons/proper/dbutils/trunk/src/main/java/org/apache/commons/dbutils/AsyncQueryRunner.java
 (original)
+++ 
commons/proper/dbutils/trunk/src/main/java/org/apache/commons/dbutils/AsyncQueryRunner.java
 Tue Sep 20 20:52:09 2011
@@ -138,7 +138,6 @@ public class AsyncQueryRunner extends Ab
      * this array is one set of batch replacement values.
      * @return A <code>Callable</code> which returns the number of rows 
updated per statement.
      * @throws SQLException if a database access error occurs
-     * @since DbUtils 1.1
      */
     public Callable<int[]> batch(Connection conn, String sql, Object[][] 
params) throws SQLException {
         return this.batch(conn, false, sql, params);
@@ -155,7 +154,6 @@ public class AsyncQueryRunner extends Ab
      * this array is one set of batch replacement values.
      * @return A <code>Callable</code> which returns the number of rows 
updated per statement.
      * @throws SQLException if a database access error occurs
-     * @since DbUtils 1.1
      */
     public Callable<int[]> batch(String sql, Object[][] params) throws 
SQLException {
         Connection conn = this.prepareConnection();


Reply via email to