Remove unused imports

This commit is contained in:
Mahmoud Ben Hassine
2021-09-12 22:23:56 +02:00
parent 03c365ef70
commit e8bbde10e5
50 changed files with 1 additions and 123 deletions

View File

@@ -18,12 +18,8 @@ package org.springframework.batch.sample.remotechunking;
import javax.sql.DataSource;
import org.apache.commons.dbcp2.BasicDataSource;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder;
/**

View File

@@ -18,8 +18,6 @@ package org.springframework.batch.sample.skip;
import java.util.Arrays;
import javax.sql.DataSource;
import org.springframework.batch.core.Job;
import org.springframework.batch.core.Step;
import org.springframework.batch.core.configuration.annotation.EnableBatchProcessing;
@@ -32,7 +30,6 @@ import org.springframework.batch.item.support.ListItemReader;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder;
/**
* @author Mahmoud Ben Hassine