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 4582d02e71d4502c2b57535da2a3fa6072de24f0
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Nov 4 17:31:16 2024 -0500

    Javadoc
    
    No need for fully-qualifed type names
---
 .../org/apache/commons/dbcp2/managed/XAConnectionFactory.java     | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/dbcp2/managed/XAConnectionFactory.java 
b/src/main/java/org/apache/commons/dbcp2/managed/XAConnectionFactory.java
index 3421fda8..abef8098 100644
--- a/src/main/java/org/apache/commons/dbcp2/managed/XAConnectionFactory.java
+++ b/src/main/java/org/apache/commons/dbcp2/managed/XAConnectionFactory.java
@@ -30,16 +30,16 @@ import org.apache.commons.dbcp2.ConnectionFactory;
  * @since 2.0
  */
 public interface XAConnectionFactory extends ConnectionFactory {
+
     /**
-     * Create a new {@link java.sql.Connection} in an implementation specific 
fashion.
+     * Creates a new {@link Connection} in an implementation specific fashion.
      * <p>
      * An implementation can assume that the caller of this will wrap the 
connection in a proxy that protects access to
      * the setAutoCommit, commit and rollback when enrolled in a XA 
transaction.
      * </p>
      *
-     * @return a new {@link java.sql.Connection}
-     * @throws java.sql.SQLException
-     *             if a database error occurs creating the connection
+     * @return a new {@link Connection}
+     * @throws SQLException if a database error occurs creating the connection
      */
     @Override
     Connection createConnection() throws SQLException;

Reply via email to