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/06/13 17:28:27 UTC

[05/50] [abbrv] commons-dbcp git commit: Add missing Javadoc HTML tags.

Add missing Javadoc HTML tags.

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

Branch: refs/heads/release
Commit: 15a5cf8860bf16f2b7cb00ac06f3b57618e8fcc0
Parents: c2999df
Author: Gary Gregory <ga...@gmail.com>
Authored: Mon Jun 11 17:14:26 2018 -0600
Committer: Gary Gregory <ga...@gmail.com>
Committed: Mon Jun 11 17:14:26 2018 -0600

----------------------------------------------------------------------
 src/main/java/org/apache/commons/dbcp2/DelegatingConnection.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/15a5cf88/src/main/java/org/apache/commons/dbcp2/DelegatingConnection.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/dbcp2/DelegatingConnection.java b/src/main/java/org/apache/commons/dbcp2/DelegatingConnection.java
index b41deea..6259bfc 100644
--- a/src/main/java/org/apache/commons/dbcp2/DelegatingConnection.java
+++ b/src/main/java/org/apache/commons/dbcp2/DelegatingConnection.java
@@ -48,6 +48,7 @@ import java.util.concurrent.Executor;
  * simply check to see that the {@link Connection} is active,
  * and call the corresponding method on the "delegate"
  * provided in my constructor.
+ * </p>
  * <p>
  * Extends AbandonedTrace to implement Connection tracking and
  * logging of code which created the Connection. Tracking the
@@ -55,6 +56,7 @@ import java.util.concurrent.Executor;
  * this connection and recycle it if its pool of connections
  * is nearing exhaustion and this connection's last usage is
  * older than the removeAbandonedTimeout.
+ * </p>
  *
  * @param <C> the Connection type
  *
@@ -77,7 +79,7 @@ public class DelegatingConnection<C extends Connection> extends AbandonedTrace
     private Integer defaultQueryTimeoutSeconds;
 
     /**
-     * Create a wrapper for the Connection which traces this
+     * Creates a wrapper for the Connection which traces this
      * Connection in the AbandonedObjectPool.
      *
      * @param c the {@link Connection} to delegate all calls to.