You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by th...@apache.org on 2017/07/07 02:07:11 UTC

[49/58] [abbrv] commons-dbutils git commit: Unused imports

Unused imports

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/dbutils/branches/2_0@1482108 13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/commons-dbutils/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbutils/commit/f2fba8d5
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbutils/tree/f2fba8d5
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbutils/diff/f2fba8d5

Branch: refs/heads/2_0
Commit: f2fba8d51576807c6ad67cc8cc0f441e0f5e72ba
Parents: 144fad9
Author: Sebastian Bazley <se...@apache.org>
Authored: Mon May 13 21:05:52 2013 +0000
Committer: Sebastian Bazley <se...@apache.org>
Committed: Mon May 13 21:05:52 2013 +0000

----------------------------------------------------------------------
 src/main/java/org/apache/commons/dbutils2/BatchExecutor.java      | 1 -
 .../java/org/apache/commons/dbutils2/BatchInsertExecutorTest.java | 3 ---
 2 files changed, 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-dbutils/blob/f2fba8d5/src/main/java/org/apache/commons/dbutils2/BatchExecutor.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/dbutils2/BatchExecutor.java b/src/main/java/org/apache/commons/dbutils2/BatchExecutor.java
index 4ee5d16..f175a9b 100644
--- a/src/main/java/org/apache/commons/dbutils2/BatchExecutor.java
+++ b/src/main/java/org/apache/commons/dbutils2/BatchExecutor.java
@@ -17,7 +17,6 @@
 package org.apache.commons.dbutils2;
 
 import java.sql.Connection;
-import java.sql.ResultSet;
 import java.sql.SQLException;
 import java.sql.Types;
 

http://git-wip-us.apache.org/repos/asf/commons-dbutils/blob/f2fba8d5/src/test/java/org/apache/commons/dbutils2/BatchInsertExecutorTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/commons/dbutils2/BatchInsertExecutorTest.java b/src/test/java/org/apache/commons/dbutils2/BatchInsertExecutorTest.java
index 7bb3a85..919374e 100644
--- a/src/test/java/org/apache/commons/dbutils2/BatchInsertExecutorTest.java
+++ b/src/test/java/org/apache/commons/dbutils2/BatchInsertExecutorTest.java
@@ -16,7 +16,6 @@
  */
 package org.apache.commons.dbutils2;
 
-import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertNotNull;
 import static org.mockito.Matchers.any;
 import static org.mockito.Mockito.times;
@@ -26,8 +25,6 @@ import java.sql.Connection;
 import java.sql.PreparedStatement;
 import java.sql.ResultSet;
 import java.sql.SQLException;
-import java.util.List;
-import org.apache.commons.dbutils2.handlers.ArrayListHandler;
 import org.junit.Before;
 import org.junit.Test;
 import org.mockito.Mock;