fix typo delgates->delegates

This commit is contained in:
qwazer
2013-04-27 14:56:50 +04:00
committed by Michael Minella
parent 1350a5ca22
commit 6487b030fa
3 changed files with 5 additions and 5 deletions

View File

@@ -53,8 +53,8 @@ public class CompositeItemProcessor<I, O> implements ItemProcessor<I, O>, Initia
@Override
public void afterPropertiesSet() throws Exception {
Assert.notNull(delegates, "The 'delgates' may not be null");
Assert.notEmpty(delegates, "The 'delgates' may not be empty");
Assert.notNull(delegates, "The 'delegates' may not be null");
Assert.notEmpty(delegates, "The 'delegates' may not be empty");
}
public void setDelegates(List<ItemProcessor<Object, Object>> delegates) {

View File

@@ -54,8 +54,8 @@ public class CompositeItemWriter<T> implements ItemStreamWriter<T>, Initializing
@Override
public void afterPropertiesSet() throws Exception {
Assert.notNull(delegates, "The 'delgates' may not be null");
Assert.notEmpty(delegates, "The 'delgates' may not be empty");
Assert.notNull(delegates, "The 'delegates' may not be null");
Assert.notEmpty(delegates, "The 'delegates' may not be empty");
}
public void setDelegates(List<ItemWriter<? super T>> delegates) {