[libpostgresql-jdbc-java] 54/128: fix a simple miss in getPropertyInfo()
Emmanuel Bourg
ebourg-guest at moszumanska.debian.org
Mon Jan 9 10:18:30 UTC 2017
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 <chj at 10.167.159.99>
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
More information about the pkg-java-commits
mailing list