Fix Javadoc tags order in the CheckedCallable

This commit is contained in:
Artem Bilan
2025-01-02 12:54:58 -05:00
parent ffcf5f91f1
commit 37664fb2aa

View File

@@ -62,8 +62,8 @@ public interface CheckedCallable<T, E extends Throwable> {
* 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<T> uncheckedCallable() {