Skip to content

Commit 114c3f7

Browse files
committed
Avoid unnecessary imports for Javadoc
1 parent 8f34a67 commit 114c3f7

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

spring-core/src/main/java/org/springframework/core/retry/RetryListener.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,18 @@
1818

1919
import org.jspecify.annotations.Nullable;
2020

21-
import org.springframework.core.retry.support.CompositeRetryListener;
22-
2321
/**
2422
* {@code RetryListener} defines a <em>listener</em> API for reacting to events
2523
* published during the execution of a {@link Retryable} operation.
2624
*
27-
* <p>Typically registered in a {@link RetryTemplate}, and can be composed using
28-
* a {@link CompositeRetryListener}.
25+
* <p>Typically registered in a {@link RetryTemplate}, and can be composed using a
26+
* {@link org.springframework.core.retry.support.CompositeRetryListener CompositeRetryListener}.
2927
*
3028
* @author Mahmoud Ben Hassine
3129
* @author Sam Brannen
3230
* @author Juergen Hoeller
3331
* @since 7.0
34-
* @see CompositeRetryListener
32+
* @see org.springframework.core.retry.support.CompositeRetryListener
3533
*/
3634
public interface RetryListener {
3735

spring-core/src/main/java/org/springframework/core/retry/support/CompositeRetryListener.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424
import org.springframework.core.retry.RetryException;
2525
import org.springframework.core.retry.RetryListener;
2626
import org.springframework.core.retry.RetryPolicy;
27-
import org.springframework.core.retry.RetryTemplate;
2827
import org.springframework.core.retry.Retryable;
2928
import org.springframework.util.Assert;
3029

3130
/**
3231
* A composite implementation of the {@link RetryListener} interface, which is
33-
* used to compose multiple listeners within a {@link RetryTemplate}.
32+
* used to compose multiple listeners within a
33+
* {@link org.springframework.core.retry.RetryTemplate RetryTemplate}.
3434
*
3535
* <p>Delegate listeners will be called in their registration order.
3636
*

0 commit comments

Comments
 (0)