JAVA-18609 GitHub Issue: Spring Batch - JobBuilderFactory and StepBui… (#13618)
* JAVA-18609 GitHub Issue: Spring Batch - JobBuilderFactory and StepBuilderFactory are deprecated --------- Co-authored-by: timis1 <noreplay@yahoo.com>
This commit is contained in:
@@ -21,9 +21,9 @@ public class LineReader implements ItemReader<Line>, StepExecutionListener {
|
||||
}
|
||||
|
||||
@Override
|
||||
public Line read() throws Exception {
|
||||
public Line read() {
|
||||
Line line = fu.readLine();
|
||||
if (line != null) logger.debug("Read line: " + line.toString());
|
||||
if (line != null) logger.debug("Read line: " + line);
|
||||
return line;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user