From a939b194fe253263b13e75519e67bd662e48f1e6 Mon Sep 17 00:00:00 2001 From: Michael Minella Date: Thu, 11 Jul 2013 16:20:49 -0500 Subject: [PATCH] Merged pull request #195 from stephlag/patch-1 --- .../batch/item/support/CompositeItemProcessor.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/support/CompositeItemProcessor.java b/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/support/CompositeItemProcessor.java index 27d7ac5b3..eabea1227 100644 --- a/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/support/CompositeItemProcessor.java +++ b/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/support/CompositeItemProcessor.java @@ -28,7 +28,7 @@ import org.springframework.util.Assert; * transformation is the entry value of the next).
*
* - * Note the user is responsible for injecting a chain of {@link ItemProcessor} s + * Note the user is responsible for injecting a chain of {@link ItemProcessor}s * that conforms to declared input and output types. * * @author Robert Kasanicky @@ -37,7 +37,7 @@ public class CompositeItemProcessor implements ItemProcessor, Initia private List> delegates; - @Override + @Override @SuppressWarnings("unchecked") public O process(I item) throws Exception { Object result = item; @@ -51,7 +51,7 @@ public class CompositeItemProcessor implements ItemProcessor, Initia return (O) result; } - @Override + @Override public void afterPropertiesSet() throws Exception { Assert.notNull(delegates, "The 'delegates' may not be null"); Assert.notEmpty(delegates, "The 'delegates' may not be empty");