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-dbcp.git

commit 414974b6efce132bfa74e54184733468f8fefca5
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Jul 29 07:52:16 2024 -0400

    Use Javadoc @link
---
 .../apache/commons/dbcp2/managed/BasicManagedDataSource.java  | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/dbcp2/managed/BasicManagedDataSource.java 
b/src/main/java/org/apache/commons/dbcp2/managed/BasicManagedDataSource.java
index 52570bea..9f83f36e 100644
--- a/src/main/java/org/apache/commons/dbcp2/managed/BasicManagedDataSource.java
+++ b/src/main/java/org/apache/commons/dbcp2/managed/BasicManagedDataSource.java
@@ -234,17 +234,14 @@ public class BasicManagedDataSource extends 
BasicDataSource {
     }
 
     /**
-     * <p>
      * Sets the XADataSource instance used by the XAConnectionFactory.
-     * </p>
      * <p>
-     * Note: this method currently has no effect once the pool has been 
initialized. The pool is initialized the first
-     * time one of the following methods is invoked: <code>getConnection, 
setLogwriter,
-     * setLoginTimeout, getLoginTimeout, getLogWriter.</code>
+     * Note: this method currently has no effect once the pool has been 
initialized. The pool is initialized the first time one of the following 
methods is
+     * invoked: {@link #getConnection()}, {@link 
#setLogWriter(java.io.PrintWriter)}, {@link #setLoginTimeout(int)}, {@link 
#getLoginTimeout()},
+     * {@link #getLogWriter()}.</code>
      * </p>
      *
-     * @param xaDataSourceInstance
-     *            XADataSource instance
+     * @param xaDataSourceInstance XADataSource instance
      */
     public synchronized void setXaDataSourceInstance(final XADataSource 
xaDataSourceInstance) {
         this.xaDataSourceInstance = xaDataSourceInstance;

Reply via email to