Author: bayard
Date: Tue Nov  7 15:16:58 2006
New Revision: 472324

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

Modified:
    
jakarta/commons/proper/dbutils/trunk/src/java/org/apache/commons/dbutils/handlers/ArrayListHandler.java

Modified: 
jakarta/commons/proper/dbutils/trunk/src/java/org/apache/commons/dbutils/handlers/ArrayListHandler.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/dbutils/trunk/src/java/org/apache/commons/dbutils/handlers/ArrayListHandler.java?view=diff&rev=472324&r1=472323&r2=472324
==============================================================================
--- 
jakarta/commons/proper/dbutils/trunk/src/java/org/apache/commons/dbutils/handlers/ArrayListHandler.java
 (original)
+++ 
jakarta/commons/proper/dbutils/trunk/src/java/org/apache/commons/dbutils/handlers/ArrayListHandler.java
 Tue Nov  7 15:16:58 2006
@@ -56,25 +56,25 @@
 
     
     /**
-      * Convert row's columns into an <code>Object[]</code>.
-      * 
-      * @return <code>Object[]</code>, never <code>null</code>.
-      * 
-      * @throws SQLException
-      * @see 
org.apache.commons.dbutils.handlers.GenericListHandler#handle(ResultSet)
-      */
-     protected Object handleRow(ResultSet rs) throws SQLException {
-         return this.convert.toArray(rs);
-     }
+     * Convert row's columns into an <code>Object[]</code>.
+     * 
+     * @return <code>Object[]</code>, never <code>null</code>.
+     * 
+     * @throws SQLException
+     * @see 
org.apache.commons.dbutils.handlers.GenericListHandler#handle(ResultSet)
+     */
+    protected Object handleRow(ResultSet rs) throws SQLException {
+        return this.convert.toArray(rs);
+    }
 
-     /*
-      * Kept for binary compatibility. 
-      *
-      * @deprecated Remove in 2.0
-      * @see 
org.apache.commons.dbutils.handlers.GenericListHandler#handle(ResultSet)
-      */
-     public Object handle(ResultSet rs) throws SQLException {
-         return super.handle(rs);
-     }
+    /**
+     * Kept for binary compatibility. 
+     *
+     * @deprecated Remove in 2.0
+     * @see 
org.apache.commons.dbutils.handlers.GenericListHandler#handle(ResultSet)
+     */
+    public Object handle(ResultSet rs) throws SQLException {
+        return super.handle(rs);
+    }
 
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to