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 7b58256 Javadoc 7b58256 is described below commit 7b582568819eae8f9637528bf31f4a704312094a Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Dec 17 14:32:04 2023 -0500 Javadoc --- src/main/java/org/apache/commons/dbutils/OutParameter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/dbutils/OutParameter.java b/src/main/java/org/apache/commons/dbutils/OutParameter.java index 4a78ad1..0808019 100644 --- a/src/main/java/org/apache/commons/dbutils/OutParameter.java +++ b/src/main/java/org/apache/commons/dbutils/OutParameter.java @@ -42,7 +42,7 @@ public class OutParameter<T> { * Constructs an {@code OutParameter} for the given JDBC SQL type and * Java type. * @param sqlType the JDBC SQL type of the parameter as in - * {@code java.sql.Types}. + * {@link java.sql.Types}. * @param javaType the Java class of the parameter value, cast compatible * with the type returned by {@code CallableStatement.getObject(int)} * for the JDBC type given by {@code sqlType}. @@ -57,7 +57,7 @@ public class OutParameter<T> { * Java type and with the given value. The parameter will be treated as an * INOUT parameter if the value is null. * @param sqlType the JDBC SQL type of the parameter as in - * {@code java.sql.Types}. + * {@link java.sql.Types}. * @param javaType the Java class of the parameter value, cast compatible * with the type returned by {@code CallableStatement.getObject(int)} * for the JDBC type given by {@code sqlType}.