This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to annotated tag REL9_3_1100
in repository libpostgresql-jdbc-java.

commit 946327b4e247d280ed5348db17adaf9b83162e6e
Author: chj <[email protected]>
Date:   Wed Mar 20 14:52:49 2013 +0800

    fix a simple miss in getPropertyInfo()
---
 org/postgresql/Driver.java.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/org/postgresql/Driver.java.in b/org/postgresql/Driver.java.in
index ad5e938..6c0d5d5 100644
--- a/org/postgresql/Driver.java.in
+++ b/org/postgresql/Driver.java.in
@@ -502,7 +502,7 @@ public class Driver implements java.sql.Driver
     public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) 
throws SQLException
     {
         Properties copy = new Properties(info);
-        parseURL(url, copy);
+        copy = parseURL(url, copy);
 
         DriverPropertyInfo[] props = new 
DriverPropertyInfo[knownProperties.length];
         for (int i = 0; i < knownProperties.length; ++i)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/libpostgresql-jdbc-java.git

_______________________________________________
pkg-java-commits mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

Reply via email to