File tree 2 files changed +2
-2
lines changed
spring-batch-docs/modules/ROOT/pages
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -686,7 +686,7 @@ the class definition for `NoWorkFoundStepExecutionListener`:
686
686
687
687
[source, java]
688
688
----
689
- public class NoWorkFoundStepExecutionListener extends StepExecutionListenerSupport {
689
+ public class NoWorkFoundStepExecutionListener implements StepExecutionListener {
690
690
691
691
public ExitStatus afterStep(StepExecution stepExecution) {
692
692
if (stepExecution.getReadCount() == 0) {
Original file line number Diff line number Diff line change @@ -303,7 +303,7 @@ the following code snippet shows:
303
303
304
304
[source, java]
305
305
----
306
- public class NoWorkFoundStepExecutionListener extends StepExecutionListenerSupport {
306
+ public class NoWorkFoundStepExecutionListener implements StepExecutionListener {
307
307
308
308
public ExitStatus afterStep(StepExecution stepExecution) {
309
309
if (stepExecution.getReadCount() == 0) {
You can’t perform that action at this time.
0 commit comments