Commit 72a3c44b authored by Oleg Zhurakousky's avatar Oleg Zhurakousky
Browse files

Upgraded access modifier in FunctionInvocationWrapper

parent 8c335c6a
Showing with 1 addition and 1 deletion
+1 -1
......@@ -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);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment