Organise imports

This commit is contained in:
dsyer
2007-11-02 08:57:58 +00:00
parent a6515d9d72
commit 0d28722432
6 changed files with 1 additions and 7 deletions

View File

@@ -17,7 +17,6 @@ package org.springframework.batch.io.driving;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.List;
import java.util.Map;
import org.springframework.batch.io.sample.domain.Foo;

View File

@@ -202,7 +202,7 @@ public class DrivingQueryInputSourceTests extends TestCase {
public List restoreKeys(RestartData restartData) {
assertEquals(this.restartData, restartData);
assertEquals(MockKeyGenerator.restartData, restartData);
return restartKeys;
}

View File

@@ -1,7 +1,6 @@
package org.springframework.batch.io.driving;
import org.springframework.batch.io.InputSource;
import org.springframework.batch.io.driving.DrivingQueryInputSource;
import org.springframework.batch.restart.RestartData;
import org.springframework.batch.restart.Restartable;
import org.springframework.beans.factory.DisposableBean;

View File

@@ -16,7 +16,6 @@
package org.springframework.batch.io.driving;
import org.springframework.batch.io.InputSource;
import org.springframework.batch.io.driving.DrivingQueryInputSource;
import org.springframework.batch.io.driving.support.MultipleColumnJdbcKeyGenerator;
import org.springframework.batch.io.sql.AbstractSqlInputSourceIntegrationTests;

View File

@@ -1,7 +1,6 @@
package org.springframework.batch.io.driving;
import org.springframework.batch.io.InputSource;
import org.springframework.batch.io.driving.DrivingQueryInputSource;
import org.springframework.batch.io.driving.support.SingleColumnJdbcKeyGenerator;
import org.springframework.batch.io.sql.AbstractSqlInputSourceIntegrationTests;

View File

@@ -11,12 +11,10 @@ import java.util.Properties;
import junit.framework.TestCase;
import org.easymock.MockControl;
import org.springframework.batch.io.driving.support.ColumnMapRestartDataRowMapper;
import org.springframework.batch.restart.GenericRestartData;
import org.springframework.batch.restart.RestartData;
import org.springframework.core.CollectionFactory;
import org.springframework.jdbc.core.PreparedStatementSetter;
import org.springframework.jdbc.core.SqlTypeValue;
import org.springframework.util.ClassUtils;
/**