mirror of
https://github.com/postgres/postgres.git
synced 2025-07-09 22:41:56 +03:00
clean up warnings produced by Eclipse
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
* Copyright (c) 2003, PostgreSQL Global Development Group
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Attic/Driver.java.in,v 1.29 2003/05/29 03:22:48 barry Exp $
|
||||
* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Attic/Driver.java.in,v 1.30 2003/05/29 04:39:51 barry Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -198,7 +198,8 @@ public class Driver implements java.sql.Driver
|
||||
public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) throws SQLException
|
||||
{
|
||||
//This method isn't really implemented
|
||||
Properties p = parseURL(url, info);
|
||||
//we just parse the URL to ensure it is valid
|
||||
parseURL(url, info);
|
||||
return new DriverPropertyInfo[0];
|
||||
}
|
||||
|
||||
@ -261,8 +262,6 @@ public class Driver implements java.sql.Driver
|
||||
{
|
||||
int state = -1;
|
||||
Properties urlProps = new Properties(defaults);
|
||||
String key = "";
|
||||
String value = "";
|
||||
|
||||
String l_urlServer = url;
|
||||
String l_urlArgs = "";
|
||||
|
Reference in New Issue
Block a user