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 94fc43e Javadoc: Use semantic tag <strong> instead of style tag <b> 94fc43e is described below commit 94fc43e9659ead65464fbfa15b981ba5e8655de4 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Nov 15 11:12:51 2024 -0500 Javadoc: Use semantic tag <strong> instead of style tag <b> --- src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java b/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java index 326cd82..7fc2021 100644 --- a/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java +++ b/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java @@ -45,7 +45,7 @@ import java.util.Map; * 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 <em>NOT</em> thread safe! + * <strong>NOTE</strong> This class is <em>NOT</em> thread safe! * </p> * * @param <T> the target type the input ResultSet will be converted to.