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