Skip to content

Commit 42123e3

Browse files
committed
GH-1352: Spring Integration 5.5 Compatibility
AMLC override of `afterPropertiesSet()` does not `throw Exception` so MLC does not have to either.
1 parent 086822c commit 42123e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-rabbit/src/main/java/org/springframework/amqp/rabbit/listener/MessageListenerContainer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ default boolean isConsumerBatchEnabled() {
8989
void setListenerId(String id);
9090

9191
@Override
92-
default void afterPropertiesSet() throws Exception { // NOSONAR
92+
default void afterPropertiesSet() {
9393
}
9494

9595
}

0 commit comments

Comments
 (0)