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 d917eb7 Javadoc. d917eb7 is described below commit d917eb7e808566fdbbf43c244e2c0fd35cb7c62d Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Tue Dec 29 11:08:35 2020 -0500 Javadoc. --- src/main/java/org/apache/commons/dbcp2/Jdbc41Bridge.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/org/apache/commons/dbcp2/Jdbc41Bridge.java b/src/main/java/org/apache/commons/dbcp2/Jdbc41Bridge.java index 032f622..0e2848c 100644 --- a/src/main/java/org/apache/commons/dbcp2/Jdbc41Bridge.java +++ b/src/main/java/org/apache/commons/dbcp2/Jdbc41Bridge.java @@ -44,6 +44,9 @@ import javax.sql.CommonDataSource; * Defines bridge methods to JDBC 4.1 (Java 7) methods to allow call sites to operate safely (without * {@link AbstractMethodError}) when using a JDBC driver written for JDBC 4.0 (Java 6). * <p> + * There should be no need to this kind of code for JDBC 4.2 in Java 8 due to JDBC's use of default methods. + * </p> + * <p> * This should probably be moved or at least copied in some form to Apache Commons DbUtils. * </p> *