Skip to content

Commit 7280c6e

Browse files
committed
Fix JavaDocs & Checkstyle violations
1 parent d75777d commit 7280c6e

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

spring-amqp/src/main/java/org/springframework/amqp/ImmediateRequeueAmqpException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/**
2020
* The special {@link AmqpException} to be thrown from the listener (e.g. retry recoverer callback)
21-
* to {@code requeue) failed message.
21+
* to {@code requeue} failed message.
2222
*
2323
* @author Artem Bilan
2424
*

spring-rabbit/src/main/java/org/springframework/amqp/rabbit/config/RetryInterceptorBuilder.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
* .build();
6060
* </pre>
6161
*
62+
* @param <B> The target {@link RetryInterceptorBuilder} implementation type.
6263
* @param <T> The type of {@link MethodInterceptor} returned by the builder's {@link #build()} method.
6364
*
6465
* @author James Carr

spring-rabbit/src/main/java/org/springframework/amqp/rabbit/connection/RabbitConnectionFactoryBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ public void setChannelRpcTimeout(int channelRpcTimeout) {
616616
* <code>useSslProtocol</code> methods. Requires amqp-client 5.4.0 or later.
617617
* @param enable false to disable.
618618
* @since 2.0.6
619-
* @see ConnectionFactory#enableHostnameVerification()
619+
* @see com.rabbitmq.client.ConnectionFactory#enableHostnameVerification()
620620
*/
621621
public void setEnableHostnameVerification(boolean enable) {
622622
this.enableHostnameVerification = enable;

spring-rabbit/src/test/java/org/springframework/amqp/rabbit/config/RetryInterceptorBuilderSupportTests.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
import org.aopalliance.intercept.MethodInterceptor;
3535
import org.junit.Test;
3636

37-
import org.springframework.amqp.ImmediateAcknowledgeAmqpException;
3837
import org.springframework.amqp.ImmediateRequeueAmqpException;
3938
import org.springframework.amqp.core.AmqpTemplate;
4039
import org.springframework.amqp.core.Message;

0 commit comments

Comments
 (0)