From: Kris Jurka Date: Tue, 3 Feb 2004 05:00:21 +0000 (+0000) Subject: Newer versions of the 1.4.2 jdk give warnings about having return in a X-Git-Tag: REL7_4_2~45 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7ca2bff95f2b94ebd0e1811d2b5534d759f36de6;p=postgresql Newer versions of the 1.4.2 jdk give warnings about having return in a finally clause. --- diff --git a/src/interfaces/jdbc/org/postgresql/jdbc2/optional/PooledConnectionImpl.java b/src/interfaces/jdbc/org/postgresql/jdbc2/optional/PooledConnectionImpl.java index 9154e0a4db..a8be118d08 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")) {