BATCH-2519: Fix TYPO

JIRA: https://jira.spring.io/browse/BATCH-2519

    * TYPO  `Posion` correction
This commit is contained in:
Arthur Portas
2017-12-26 16:49:12 +00:00
parent 890e7d13ab
commit 19160b4296

View File

@@ -99,7 +99,7 @@ public class PoisonPillItemWriter implements ItemWriter<T> {
public void write(T item) throws Exception {
if (isPoisonPill(item)) {
throw new PoisonPillException("Posion pill detected: " + item);
throw new PoisonPillException("Poison pill detected: " + item);
}
}
}