1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-18 17:41:14 +03:00

Newer versions of the 1.4.2 jdk give warnings about having return in a

finally clause.
This commit is contained in:
Kris Jurka 2004-02-03 05:00:21 +00:00
parent fce397ed12
commit 7ca2bff95f

View File

@ -14,7 +14,7 @@ import org.postgresql.PGConnection;
* *
* @author Aaron Mulder (ammulder@chariotsolutions.com) * @author Aaron Mulder (ammulder@chariotsolutions.com)
* @author Csaba Nagy (ncsaba@yahoo.com) * @author Csaba Nagy (ncsaba@yahoo.com)
* @version $Revision: 1.7.4.1 $ * @version $Revision: 1.7.4.2 $
*/ */
public class PooledConnectionImpl implements PooledConnection public class PooledConnectionImpl implements PooledConnection
{ {
@ -369,8 +369,8 @@ public class PooledConnectionImpl implements PooledConnection
} finally { } finally {
con = null; con = null;
st = null; st = null;
return null;
} }
return null;
} }
else if (method.getName().equals("getConnection")) else if (method.getName().equals("getConnection"))
{ {