Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
Format tweaks
  • Loading branch information
garydgregory committed Nov 23, 2023
1 parent c5c0887 commit f673c91
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@

/**
* 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
*/
Expand All @@ -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);
}
Expand Down

0 comments on commit f673c91

Please sign in to comment.