1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
Fix a double comma which has been fixed upstream so should be in the next release. At
this point this patch will no longer be required.
--- a/org/postgresql/jdbc3/Jdbc3Connection.java
+++ b/org/postgresql/jdbc3/Jdbc3Connection.java
@@ -20,7 +20,7 @@
*/
public class Jdbc3Connection extends org.postgresql.jdbc3.AbstractJdbc3Connection implements java.sql.Connection
{
- public Jdbc3Connection(HostSpec[] hostSpecs,, String user, String database, Properties info, String url) throws SQLException {
+ public Jdbc3Connection(HostSpec[] hostSpecs, String user, String database, Properties info, String url) throws SQLException {
super(hostSpecs, user, database, info, url);
}
|