summaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/org/postgresql/jdbc2/Array.java
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/jdbc2/Array.java
parent35511088d3b7d22322e43e8a1f968bcff01f0a70 (diff)
downloadpostgresql-fb630cc49f06d79cf915035fc28e23814290390d.tar.gz
clean up warnings produced by Eclipse
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/jdbc2/Array.java')
-rw-r--r--src/interfaces/jdbc/org/postgresql/jdbc2/Array.java15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/jdbc2/Array.java b/src/interfaces/jdbc/org/postgresql/jdbc2/Array.java
index 2980785aec..973da1d2b0 100644
--- a/src/interfaces/jdbc/org/postgresql/jdbc2/Array.java
+++ b/src/interfaces/jdbc/org/postgresql/jdbc2/Array.java
@@ -1,14 +1,18 @@
package org.postgresql.jdbc2;
-import java.text.*;
-import java.sql.*;
-import java.util.*;
-import java.math.BigDecimal;
import org.postgresql.core.BaseConnection;
import org.postgresql.core.BaseResultSet;
import org.postgresql.core.BaseStatement;
import org.postgresql.core.Field;
-import org.postgresql.util.*;
+import org.postgresql.util.PSQLException;
+import java.math.BigDecimal;
+import java.sql.ResultSet;
+import java.sql.SQLException;
+import java.sql.Timestamp;
+import java.sql.Types;
+import java.util.ArrayList;
+import java.util.Map;
+import java.util.Vector;
/*
* Array is used collect one column of query result data.
@@ -176,7 +180,6 @@ public class Array implements java.sql.Array
break;
case Types.TIMESTAMP:
retVal = new Timestamp[ count ];
- StringBuffer sbuf = null;
for ( ; count > 0; count-- )
((java.sql.Timestamp[])retVal)[i++] = AbstractJdbc2ResultSet.toTimestamp( arrayContents[(int)index++], rs, getBaseTypeName() );
break;