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 c5342327 Camel-case parameter names
c5342327 is described below
commit c534232750533f5d82f5a9fc5a5f18964db3ef34
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Oct 19 09:14:07 2023 -0400
Camel-case parameter names
---
src/main/java/org/apache/commons/dbcp2/PoolingDataSource.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/dbcp2/PoolingDataSource.java
b/src/main/java/org/apache/commons/dbcp2/PoolingDataSource.java
index 8643b5ab..7fd4104e 100644
--- a/src/main/java/org/apache/commons/dbcp2/PoolingDataSource.java
+++ b/src/main/java/org/apache/commons/dbcp2/PoolingDataSource.java
@@ -161,7 +161,7 @@ public class PoolingDataSource<C extends Connection>
implements DataSource, Auto
* always thrown
*/
@Override
- public Connection getConnection(final String uname, final String passwd)
throws SQLException {
+ public Connection getConnection(final String userName, final String
password) throws SQLException {
throw new UnsupportedOperationException();
}