You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2018/07/08 17:15:25 UTC

commons-dbcp git commit: Fix Javadoc links.

Repository: commons-dbcp
Updated Branches:
  refs/heads/master f76767876 -> 329acd8cd


Fix Javadoc links.

Project: http://git-wip-us.apache.org/repos/asf/commons-dbcp/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbcp/commit/329acd8c
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbcp/tree/329acd8c
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbcp/diff/329acd8c

Branch: refs/heads/master
Commit: 329acd8cdd3c7b8c2475ba2fa4fe94c53b6e8b88
Parents: f767678
Author: Gary Gregory <ga...@gmail.com>
Authored: Sun Jul 8 11:15:23 2018 -0600
Committer: Gary Gregory <ga...@gmail.com>
Committed: Sun Jul 8 11:15:23 2018 -0600

----------------------------------------------------------------------
 src/main/java/org/apache/commons/dbcp2/PStmtKey.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/329acd8c/src/main/java/org/apache/commons/dbcp2/PStmtKey.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/dbcp2/PStmtKey.java b/src/main/java/org/apache/commons/dbcp2/PStmtKey.java
index bc8291c..1bc4e23 100644
--- a/src/main/java/org/apache/commons/dbcp2/PStmtKey.java
+++ b/src/main/java/org/apache/commons/dbcp2/PStmtKey.java
@@ -305,7 +305,7 @@ public class PStmtKey {
      *            or <code>ResultSet.CLOSE_CURSORS_AT_COMMIT</code>.
      * @param statementType
      *            The SQL statement type, prepared or callable.
-     * @deprecated Use {@link #PStmtKey(String, String, String, int, int, int, StatementType)}
+     * @deprecated Use {@link #PStmtKey(String, String, String, int, int, int, PoolingConnection.StatementType)}
      */
     @Deprecated
     public PStmtKey(final String sql, final String catalog, final int resultSetType, final int resultSetConcurrency,
@@ -343,7 +343,7 @@ public class PStmtKey {
      *            <code>ResultSet.CONCUR_UPDATABLE</code>.
      * @param statementType
      *            The SQL statement type, prepared or callable.
-     * @deprecated Use {@link #PStmtKey(String, String, String, int, int, StatementType)}.
+     * @deprecated Use {@link #PStmtKey(String, String, String, int, int, PoolingConnection.StatementType)}.
      */
     @Deprecated
     public PStmtKey(final String sql, final String catalog, final int resultSetType, final int resultSetConcurrency,
@@ -403,7 +403,7 @@ public class PStmtKey {
      *            The catalog.
      * @param statementType
      *            The SQL statement type, prepared or callable.
-     * @deprecated Use {@link #PStmtKey(String, String, String, StatementType)}.
+     * @deprecated Use {@link #PStmtKey(String, String, String, PoolingConnection.StatementType)}.
      */
     @Deprecated
     public PStmtKey(final String sql, final String catalog, final StatementType statementType) {
@@ -437,7 +437,7 @@ public class PStmtKey {
      * @param autoGeneratedKeys
      *            A flag indicating whether auto-generated keys should be returned; one of
      *            <code>Statement.RETURN_GENERATED_KEYS</code> or <code>Statement.NO_GENERATED_KEYS</code>.
-     * @deprecated Use {@link #PStmtKey(String, String, String, StatementType, Integer)}
+     * @deprecated Use {@link #PStmtKey(String, String, String, PoolingConnection.StatementType, Integer)}
      */
     @Deprecated
     public PStmtKey(final String sql, final String catalog, final StatementType statementType,