INT-4053: Avoid Reactor dependency requirement

JIRA: https://jira.spring.io/browse/INT-4053

The recent changes to the `FileSplitter` introduced (by IDE autocompletion mistake) hidden dependency of Reactor using its `Assert` class instead of Spring's one

**Cherry-pick to 4.2.x**
This commit is contained in:
Artem Bilan
2016-06-10 16:40:06 -04:00
parent 0268a68b63
commit eca8536678

View File

@@ -43,10 +43,9 @@ import org.springframework.integration.support.json.JsonObjectMapper;
import org.springframework.integration.support.json.JsonObjectMapperProvider;
import org.springframework.messaging.Message;
import org.springframework.messaging.MessageHandlingException;
import org.springframework.util.Assert;
import org.springframework.util.StringUtils;
import reactor.core.support.Assert;
/**
* The {@link AbstractMessageSplitter} implementation to split the {@link File}
* Message payload to lines.