You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Phil Steitz (JIRA)" <ji...@apache.org> on 2010/02/15 02:45:28 UTC

[jira] Closed: (DBCP-316) datasources.SharedPoolDataSource.getPooledConnectionAndInfo() contains an impossible null check

     [ https://issues.apache.org/jira/browse/DBCP-316?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Phil Steitz closed DBCP-316.
----------------------------


> datasources.SharedPoolDataSource.getPooledConnectionAndInfo() contains an impossible null check
> -----------------------------------------------------------------------------------------------
>
>                 Key: DBCP-316
>                 URL: https://issues.apache.org/jira/browse/DBCP-316
>             Project: Commons Dbcp
>          Issue Type: Bug
>            Reporter: Sebb
>
> datasources.SharedPoolDataSource.getPooledConnectionAndInfo() contains an impossible null check:
> {code}
> synchronized (userKeys) {
>     key = getUserPassKey(username, password);
> }
>         
> try {
>     info = (PooledConnectionAndInfo) pool.borrowObject(key);
> }
> catch (SQLException ex) {  // Remove bad UserPassKey
>     if (userKeys != null) { // <== cannot be null here, else synch. would have failed with NPE
> ...
> {code}
> The null check should be removed, as userKeys cannot be null (it is a final variable, and set non-null).

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.