diff --git a/spring-cloud-function-context/src/main/java/org/springframework/cloud/function/context/catalog/SimpleFunctionRegistry.java b/spring-cloud-function-context/src/main/java/org/springframework/cloud/function/context/catalog/SimpleFunctionRegistry.java index 7dcc73168..b63632f30 100644 --- a/spring-cloud-function-context/src/main/java/org/springframework/cloud/function/context/catalog/SimpleFunctionRegistry.java +++ b/spring-cloud-function-context/src/main/java/org/springframework/cloud/function/context/catalog/SimpleFunctionRegistry.java @@ -387,7 +387,7 @@ public class SimpleFunctionRegistry implements FunctionRegistry, FunctionInspect * It is not intended to remain here and will be removed as soon as particular elements * of stream will be refactored to address this. */ - private Function enhancer; + private Function enhancer; FunctionInvocationWrapper(FunctionInvocationWrapper function) { this.skipOutputConversion = function.skipOutputConversion; @@ -432,7 +432,7 @@ public class SimpleFunctionRegistry implements FunctionRegistry, FunctionInspect * It is not intended to remain here and will be removed as soon as particular elements * of stream will be refactored to address this. */ - public Function getEnhancer() { + public Function getEnhancer() { return this.enhancer; } @@ -443,7 +443,7 @@ public class SimpleFunctionRegistry implements FunctionRegistry, FunctionInspect * It is not intended to remain here and will be removed as soon as particular elements * of stream will be refactored to address this. */ - public void setEnhancer(Function enhancer) { + public void setEnhancer(Function enhancer) { this.enhancer = enhancer; }