From fa11dcb6d89a0b3ff39a18ed2452b74969aef425 Mon Sep 17 00:00:00 2001 From: Soby Chacko Date: Fri, 11 Feb 2022 12:41:36 -0500 Subject: [PATCH] Revert "Remove skipConversion in FunctionAroundWrapper" This reverts commit d4aa4f0e41cc796b6b6a6f69a801efef1ebacf54. --- .../catalog/FunctionAroundWrapper.java | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/spring-cloud-function-context/src/main/java/org/springframework/cloud/function/context/catalog/FunctionAroundWrapper.java b/spring-cloud-function-context/src/main/java/org/springframework/cloud/function/context/catalog/FunctionAroundWrapper.java index 9fe1f4773..49ff7454a 100644 --- a/spring-cloud-function-context/src/main/java/org/springframework/cloud/function/context/catalog/FunctionAroundWrapper.java +++ b/spring-cloud-function-context/src/main/java/org/springframework/cloud/function/context/catalog/FunctionAroundWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright 2020-2022 the original author or authors. + * Copyright 2020-2020 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -27,11 +27,10 @@ import org.springframework.util.StringUtils; * If registered as bean it will be autowired into {@link FunctionInvocationWrapper}. * Keep in mind that it only affects imperative invocations where input is {@link Message} * - * NOTE: This API is experimental and could change without notice. It is + * NOTE: This API is experimental and and could change without notice. It is * intended for internal use only (e.g., spring-cloud-sleuth) * * @author Oleg Zhurakousky - * @author Artem Bilan * @since 3.1 */ public abstract class FunctionAroundWrapper implements BiFunction { @@ -39,10 +38,17 @@ public abstract class FunctionAroundWrapper implements BiFunction