diff options
author | Kris Jurka <books@ejurka.com> | 2004-02-03 05:00:21 +0000 |
---|---|---|
committer | Kris Jurka <books@ejurka.com> | 2004-02-03 05:00:21 +0000 |
commit | 7ca2bff95f2b94ebd0e1811d2b5534d759f36de6 (patch) | |
tree | 11fdfe00a554bcd8f03f3477d38c805c8ada4368 /src/interfaces/jdbc | |
parent | fce397ed12dd2dca6b2129a5654b3df33c10e0dd (diff) |
Newer versions of the 1.4.2 jdk give warnings about having return in a
finally clause.
Diffstat (limited to 'src/interfaces/jdbc')
-rw-r--r-- | src/interfaces/jdbc/org/postgresql/jdbc2/optional/PooledConnectionImpl.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/jdbc2/optional/PooledConnectionImpl.java b/src/interfaces/jdbc/org/postgresql/jdbc2/optional/PooledConnectionImpl.java index 9154e0a4db9..a8be118d083 100644 --- a/src/interfaces/jdbc/org/postgresql/jdbc2/optional/PooledConnectionImpl.java +++ b/src/interfaces/jdbc/org/postgresql/jdbc2/optional/PooledConnectionImpl.java @@ -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")) { |