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

@@ -95,13 +95,6 @@ public class JobSupport implements BeanNameAware, Job {
return name;
}
/* (non-Javadoc)
* @see org.springframework.batch.core.domain.IJob#getSteps()
*/
public List<Step> getSteps() {
return steps;
}
public void setSteps(List<Step> steps) {
this.steps.clear();
this.steps.addAll(steps);