From 37664fb2aae540ef824587d793ac6b421e76d5e3 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Thu, 2 Jan 2025 12:54:58 -0500 Subject: [PATCH] Fix Javadoc tags order in the `CheckedCallable` --- .../org/springframework/integration/util/CheckedCallable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 5e7e791a21..bb62e78ed0 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 @@ -62,8 +62,8 @@ public interface CheckedCallable { * Wrap the {@link #call()} into unchecked {@link Callable}. * Re-throw its exception wrapped with a {@link IllegalStateException}. * @return the unchecked {@link Callable}. - * @deprecated since 6.5 in favor of {@link #unchecked()}. * @since 6.3.7 + * @deprecated since 6.5 in favor of {@link #unchecked()}. */ @Deprecated(since = "6.5", forRemoval = true) default Callable uncheckedCallable() {