RESOLVED - BATCH-570: Job.getSteps() does not need to be exposed in the interface

removed the getSteps() method
This commit is contained in:
robokaso
2008-07-18 09:17:26 +00:00
parent 7166a88a43
commit 6d34dff7d8
6 changed files with 1 additions and 41 deletions

View File

@@ -1,7 +1,5 @@
package org.springframework.batch.integration;
import java.util.List;
import org.springframework.batch.core.Job;
import org.springframework.batch.core.JobExecution;
import org.springframework.batch.core.JobExecutionException;
@@ -22,12 +20,6 @@ public class JobSupport implements Job {
return name;
}
@SuppressWarnings("unchecked")
public List getSteps() {
// TODO Auto-generated method stub
return null;
}
public boolean isRestartable() {
// TODO Auto-generated method stub
return false;