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 ee894d8a Comment: Remove unnecessary Latin acronym ee894d8a is described below commit ee894d8a80681fc6c9341f9e848c5c1b52d9e029 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Mar 14 10:05:19 2025 -0400 Comment: Remove unnecessary Latin acronym --- src/main/java/org/apache/commons/dbcp2/DriverFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/dbcp2/DriverFactory.java b/src/main/java/org/apache/commons/dbcp2/DriverFactory.java index 80b12945..6287210b 100644 --- a/src/main/java/org/apache/commons/dbcp2/DriverFactory.java +++ b/src/main/java/org/apache/commons/dbcp2/DriverFactory.java @@ -60,7 +60,7 @@ final class DriverFactory { } else { // Usage of DriverManager is not possible, as it does not // respect the ContextClassLoader - // N.B. This cast may cause ClassCastException which is + // This cast may cause ClassCastException which is // handled below driverToUse = (Driver) driverFromCCL.getConstructor().newInstance(); if (!driverToUse.acceptsURL(url)) {