Skip to content

Commit a10814d

Browse files
artembilanspring-builds
authored andcommitted
Fix Javadoc style errors in the CheckedCallable
(cherry picked from commit dd7dd09)
1 parent 9fffb5b commit a10814d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-integration-core/src/main/java/org/springframework/integration/util/CheckedCallable.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,18 @@ public interface CheckedCallable<T, E extends Throwable> {
3939
* Re-throw its exception wrapped with a {@link IllegalStateException}.
4040
* @return the Runnable (by mistake).
4141
* @deprecated since 6.3.7 in favor of {@link #uncheckedCallable()}.
42-
* Will be restored back, but with a proper {@link Callable<T>} return type.
42+
* Will be restored back, but with a proper {@link Callable} return type.
4343
*/
4444
@Deprecated
4545
default Runnable unchecked() {
4646
return this::uncheckedCallable;
4747
}
4848

4949
/**
50-
* Wrap the {@link #call()} into unchecked {@link Callable<T>}.
50+
* Wrap the {@link #call()} into unchecked {@link Callable}.
5151
* Re-throw its exception wrapped with a {@link IllegalStateException}.
5252
* Will be replaced with a proper {@link #unchecked()} implementation in 6.5.
53-
* @return the unchecked {@link Callable<T>}.
53+
* @return the unchecked {@link Callable}.
5454
* @since 6.3.7
5555
*/
5656
default Callable<T> uncheckedCallable() {

0 commit comments

Comments
 (0)