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
commit f9b613e7dafd8ddd18fd470cfb6e6906b85a4ff6 Author: Gary Gregory <[email protected]> AuthorDate: Sun Oct 15 09:20:03 2023 -0400 Fix some Javadoc --- src/main/java/org/apache/commons/dbutils/AsyncQueryRunner.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/dbutils/AsyncQueryRunner.java b/src/main/java/org/apache/commons/dbutils/AsyncQueryRunner.java index 948b615..8ab8142 100644 --- a/src/main/java/org/apache/commons/dbutils/AsyncQueryRunner.java +++ b/src/main/java/org/apache/commons/dbutils/AsyncQueryRunner.java @@ -157,8 +157,9 @@ public class AsyncQueryRunner extends AbstractQueryRunner { } /** - * @deprecated No longer used by this class. Will be removed in a future version. * Class that encapsulates the continuation for update calls. + * + * @deprecated No longer used by this class. Will be removed in a future version. */ @Deprecated protected class UpdateCallableStatement implements Callable<Integer> { @@ -169,7 +170,7 @@ public class AsyncQueryRunner extends AbstractQueryRunner { private final PreparedStatement ps; /** - * + * Constructs a new instance. * * @param conn The connection to use for the batch call. * @param closeConn True if the connection should be closed, false otherwise.
