summaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/org/postgresql/jdbc3
diff options
context:
space:
mode:
authorBarry Lind <barry@xythos.com>2003-05-29 04:39:51 +0000
committerBarry Lind <barry@xythos.com>2003-05-29 04:39:51 +0000
commitfb630cc49f06d79cf915035fc28e23814290390d (patch)
tree0a75dbecca243b03cdf840a6f3722d655baf82a3 /src/interfaces/jdbc/org/postgresql/jdbc3
parent35511088d3b7d22322e43e8a1f968bcff01f0a70 (diff)
downloadpostgresql-fb630cc49f06d79cf915035fc28e23814290390d.tar.gz
clean up warnings produced by Eclipse
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/jdbc3')
-rw-r--r--src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3Connection.java7
-rw-r--r--src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3RefCursorResultSet.java7
2 files changed, 5 insertions, 9 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3Connection.java b/src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3Connection.java
index d31aae876c..f5c9f9ad59 100644
--- a/src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3Connection.java
+++ b/src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3Connection.java
@@ -1,12 +1,9 @@
package org.postgresql.jdbc3;
-import java.sql.*;
-import java.util.Vector;
-import java.util.Hashtable;
-import org.postgresql.core.Field;
+import java.sql.SQLException;
-/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc3/Attic/Jdbc3Connection.java,v 1.4 2003/03/07 18:39:45 barry Exp $
+/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc3/Attic/Jdbc3Connection.java,v 1.5 2003/05/29 04:39:50 barry Exp $
* This class implements the java.sql.Connection interface for JDBC3.
* However most of the implementation is really done in
* org.postgresql.jdbc3.AbstractJdbc3Connection or one of it's parents
diff --git a/src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3RefCursorResultSet.java b/src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3RefCursorResultSet.java
index fe18672a7b..f6c0451b4b 100644
--- a/src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3RefCursorResultSet.java
+++ b/src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3RefCursorResultSet.java
@@ -1,11 +1,10 @@
package org.postgresql.jdbc3;
-import org.postgresql.core.QueryExecutor;
-import org.postgresql.core.Field;
+import org.postgresql.PGRefCursorResultSet;
import org.postgresql.core.BaseStatement;
+import org.postgresql.core.Field;
+import org.postgresql.core.QueryExecutor;
import java.util.Vector;
-import org.postgresql.PGConnection;
-import org.postgresql.PGRefCursorResultSet;
/** A real result set based on a ref cursor.
*