]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/database/GigiResultSet.java
UPD: Correct reping (with 5min rate limiting)
[gigi.git] / src / org / cacert / gigi / database / GigiResultSet.java
index 9dc83bd774e007d5335f24815ea3234a3c7f502a..48157ffaaa15b2c389a5f04a9e5c250dbdd8c3d5 100644 (file)
@@ -3,7 +3,6 @@ package org.cacert.gigi.database;
 import java.sql.Date;
 import java.sql.ResultSet;
 import java.sql.SQLException;
-import java.sql.Time;
 import java.sql.Timestamp;
 
 public class GigiResultSet {
@@ -59,15 +58,6 @@ public class GigiResultSet {
         }
     }
 
-    public Time getTime(int columnIndex) {
-        try {
-            return target.getTime(columnIndex);
-        } catch (SQLException e) {
-            handleSQL(e);
-            throw new Error(e);
-        }
-    }
-
     public String getString(String columnLabel) {
         try {
             return target.getString(columnLabel);
@@ -113,15 +103,6 @@ public class GigiResultSet {
         }
     }
 
-    public Time getTime(String columnLabel) {
-        try {
-            return target.getTime(columnLabel);
-        } catch (SQLException e) {
-            handleSQL(e);
-            throw new Error(e);
-        }
-    }
-
     public boolean next() {
         try {
             return target.next();