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
The following commit(s) were added to refs/heads/master by this push: new a2ea369 Javadoc. a2ea369 is described below commit a2ea369dab3caf6c12f33197312dad2180a58aeb Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Jan 28 07:07:52 2022 -0500 Javadoc. --- src/main/java/org/apache/commons/dbcp2/DelegatingConnection.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/dbcp2/DelegatingConnection.java b/src/main/java/org/apache/commons/dbcp2/DelegatingConnection.java index 0215d45..1199c96 100644 --- a/src/main/java/org/apache/commons/dbcp2/DelegatingConnection.java +++ b/src/main/java/org/apache/commons/dbcp2/DelegatingConnection.java @@ -145,9 +145,9 @@ public class DelegatingConnection<C extends Connection> extends AbandonedTrace i * Closes the underlying connection, and close any Statements that were not explicitly closed. Sub-classes that * override this method must: * <ol> - * <li>Call passivate()</li> + * <li>Call {@link #passivate()}</li> * <li>Call close (or the equivalent appropriate action) on the wrapped connection</li> - * <li>Set _closed to {@code false}</li> + * <li>Set {@code closed} to {@code false}</li> * </ol> */ @Override