File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
spring-batch-docs/modules/ROOT/pages Expand file tree Collapse file tree 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`:
686686
687687[source, java]
688688----
689- public class NoWorkFoundStepExecutionListener extends StepExecutionListenerSupport {
689+ public class NoWorkFoundStepExecutionListener implements StepExecutionListener {
690690
691691 public ExitStatus afterStep(StepExecution stepExecution) {
692692 if (stepExecution.getReadCount() == 0) {
Original file line number Diff line number Diff line change @@ -303,7 +303,7 @@ the following code snippet shows:
303303
304304[source, java]
305305----
306- public class NoWorkFoundStepExecutionListener extends StepExecutionListenerSupport {
306+ public class NoWorkFoundStepExecutionListener implements StepExecutionListener {
307307
308308 public ExitStatus afterStep(StepExecution stepExecution) {
309309 if (stepExecution.getReadCount() == 0) {
You can’t perform that action at this time.
0 commit comments