]> granicus.if.org Git - postgresql/commitdiff
Newer versions of the 1.4.2 jdk give warnings about having return in a
authorKris Jurka <books@ejurka.com>
Tue, 3 Feb 2004 05:00:21 +0000 (05:00 +0000)
committerKris Jurka <books@ejurka.com>
Tue, 3 Feb 2004 05:00:21 +0000 (05:00 +0000)
finally clause.

src/interfaces/jdbc/org/postgresql/jdbc2/optional/PooledConnectionImpl.java

index 9154e0a4db946ecf7c970a3de91f50f86c391778..a8be118d083eda9cdf9ea042f853650eacf3592a 100644 (file)
@@ -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"))
             {