From dd7dd09d0069d1e1ec90dfd3bc94d443e6f9c5fb Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Mon, 9 Dec 2024 13:27:56 -0500 Subject: [PATCH] Fix Javadoc style errors in the `CheckedCallable` **Auto-cherry-pick to `6.3.x`** --- .../springframework/integration/util/CheckedCallable.java | 6 +++--- 1 file changed, 3 insertions(+), 3 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 3ade7c766d..9e9231e381 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 @@ -39,7 +39,7 @@ public interface CheckedCallable { * Re-throw its exception wrapped with a {@link IllegalStateException}. * @return the Runnable (by mistake). * @deprecated since 6.3.7 in favor of {@link #uncheckedCallable()}. - * Will be restored back, but with a proper {@link Callable} return type. + * Will be restored back, but with a proper {@link Callable} return type. */ @Deprecated default Runnable unchecked() { @@ -47,10 +47,10 @@ 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}. * Will be replaced with a proper {@link #unchecked()} implementation in 6.5. - * @return the unchecked {@link Callable}. + * @return the unchecked {@link Callable}. * @since 6.3.7 */ default Callable uncheckedCallable() {