RESOLVED - issue BATCH-789: Remove mark/reset from ItemReader
Remove AbstractItemReader. All done (with remaining issues moved to BATCH-220).
This commit is contained in:
@@ -1,12 +1,11 @@
|
||||
package example;
|
||||
|
||||
import org.springframework.batch.item.ItemReader;
|
||||
import org.springframework.batch.item.support.AbstractItemReader;
|
||||
|
||||
/**
|
||||
* {@link ItemReader} with hard-coded input data.
|
||||
*/
|
||||
public class ExampleItemReader extends AbstractItemReader<String> {
|
||||
public class ExampleItemReader implements ItemReader<String> {
|
||||
|
||||
private String[] input = {"Hello world!", null};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user