This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-dbutils.git


The following commit(s) were added to refs/heads/master by this push:
     new f673c91  Javadoc
f673c91 is described below

commit f673c91d158a081aed6e1936c10ac3c5f9cac9c2
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu Nov 23 08:30:54 2023 -0500

    Javadoc
    
    Format tweaks
---
 .../apache/commons/dbutils/BaseResultSetHandler.java   | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java 
b/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java
index 68ff351..959a541 100644
--- a/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java
+++ b/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java
@@ -40,14 +40,14 @@ import java.util.Map;
 
 /**
  * Extensions of this class convert ResultSets into other objects.
- *
- * According to the <i>DRY</i> principle (Don't Repeat Yourself), repeating 
{@code resultSet}
- * variable inside the {@link ResultSetHandler#handle(ResultSet)} over and 
over for each iteration
- * can get a little tedious, {@code AbstractResultSetHandler} implicitly gives 
users access to
- * {@code ResultSet}'s methods.
- *
+ * <p>
+ * According to the <i>DRY</i> principle (Don't Repeat Yourself), repeating 
{@code resultSet} variable inside the {@link ResultSetHandler#handle(ResultSet)}
+ * over and over for each iteration can get a little tedious, {@code 
AbstractResultSetHandler} implicitly gives users access to {@code ResultSet}'s 
methods.
+ * </p>
+ * <p>
  * <b>NOTE</b> This class is <i>NOT</i> thread safe!
- *
+ * </p>
+ * 
  * @param <T> the target type the input ResultSet will be converted to.
  * @since 1.6
  */
@@ -59,8 +59,8 @@ public abstract class BaseResultSetHandler<T> implements 
ResultSetHandler<T> {
     private ResultSet resultSet;
 
     /**
-     * TODO.
-A     */
+     * TODO. A
+     */
     protected final boolean absolute(final int row) throws SQLException {
         return resultSet.absolute(row);
     }

Reply via email to