From ffcf5f91f146809eb5e49f43f2cdc0bdd0023b47 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Thu, 2 Jan 2025 12:49:40 -0500 Subject: [PATCH] Fix Javadoc errors in the `CheckedCallable` --- .../springframework/integration/util/CheckedCallable.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-integration-core/src/main/java/org/springframework/integration/util/CheckedCallable.java b/spring-integration-core/src/main/java/org/springframework/integration/util/CheckedCallable.java index d657559a32..5e7e791a21 100644 --- a/spring-integration-core/src/main/java/org/springframework/integration/util/CheckedCallable.java +++ b/spring-integration-core/src/main/java/org/springframework/integration/util/CheckedCallable.java @@ -35,9 +35,9 @@ public interface CheckedCallable { T call() throws E; /** - * Wrap the {@link #call()} into unchecked {@link Callable}. + * Wrap the {@link #call()} into unchecked {@link Callable}. * Re-throw its exception wrapped with a {@link IllegalStateException}. - * @return the unchecked {@link Callable}. + * @return the unchecked {@link Callable}. */ default Callable unchecked() { return () -> { @@ -59,9 +59,9 @@ public interface CheckedCallable { } /** - * Wrap the {@link #call()} into unchecked {@link Callable}. + * Wrap the {@link #call()} into unchecked {@link Callable}. * Re-throw its exception wrapped with a {@link IllegalStateException}. - * @return the unchecked {@link Callable}. + * @return the unchecked {@link Callable}. * @deprecated since 6.5 in favor of {@link #unchecked()}. * @since 6.3.7 */