diff --git a/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java b/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java index 68ff3512..959a541f 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 @@ /** * Extensions of this class convert ResultSets into other objects. - * - * According to the DRY 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. - * + *

+ * According to the DRY 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. + *

+ *

* NOTE This class is NOT thread safe! - * + *

+ * * @param the target type the input ResultSet will be converted to. * @since 1.6 */ @@ -59,8 +59,8 @@ public abstract class BaseResultSetHandler implements ResultSetHandler { private ResultSet resultSet; /** - * TODO. -A */ + * TODO. A + */ protected final boolean absolute(final int row) throws SQLException { return resultSet.absolute(row); }