GH-1352: Spring Integration 5.5 Compatibility

AMLC override of `afterPropertiesSet()` does not `throw Exception` so
MLC does not have to either.
This commit is contained in:
Gary Russell
2021-06-23 13:48:18 -04:00
parent 086822cf46
commit 42123e3cf7

View File

@@ -89,7 +89,7 @@ public interface MessageListenerContainer extends SmartLifecycle, InitializingBe
void setListenerId(String id);
@Override
default void afterPropertiesSet() throws Exception { // NOSONAR
default void afterPropertiesSet() {
}
}