mirror of
https://github.com/postgres/postgres.git
synced 2026-07-16 23:05:04 -04:00
Newer versions of the 1.4.2 jdk give warnings about having return in a
finally clause.
This commit is contained in:
parent
fce397ed12
commit
7ca2bff95f
1 changed files with 2 additions and 2 deletions
|
|
@ -14,7 +14,7 @@ import org.postgresql.PGConnection;
|
|||
*
|
||||
* @author Aaron Mulder (ammulder@chariotsolutions.com)
|
||||
* @author Csaba Nagy (ncsaba@yahoo.com)
|
||||
* @version $Revision: 1.7.4.1 $
|
||||
* @version $Revision: 1.7.4.2 $
|
||||
*/
|
||||
public class PooledConnectionImpl implements PooledConnection
|
||||
{
|
||||
|
|
@ -369,8 +369,8 @@ public class PooledConnectionImpl implements PooledConnection
|
|||
} finally {
|
||||
con = null;
|
||||
st = null;
|
||||
return null;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
else if (method.getName().equals("getConnection"))
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue