From 7ca2bff95f2b94ebd0e1811d2b5534d759f36de6 Mon Sep 17 00:00:00 2001 From: Kris Jurka Date: Tue, 3 Feb 2004 05:00:21 +0000 Subject: [PATCH] Newer versions of the 1.4.2 jdk give warnings about having return in a finally clause. --- .../org/postgresql/jdbc2/optional/PooledConnectionImpl.java | 4 ++-- 1 file 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")) {