Upgraded access modifier in FunctionInvocationWrapper

This commit is contained in:
Oleg Zhurakousky
2020-02-10 16:16:10 +01:00
parent 8c335c6a20
commit 72a3c44bcb

View File

@@ -493,7 +493,7 @@ public class BeanFactoryAwareFunctionRegistry
* @return the result
*/
@SuppressWarnings("rawtypes")
protected Object get(Function<Message, Message> enricher) {
public Object get(Function<Message, Message> enricher) {
Object input = FunctionTypeUtils.isMono(this.functionType)
? Mono.empty()
: (FunctionTypeUtils.isMono(this.functionType) ? Flux.empty() : null);