The constructor in org.springframework.messaging.simp.config.AbstractBrokerRegistration checks the non-nullness of the clientOutboundChannel parameter twice but does not check the non-nullness of the clientInboundChannel parameter.
See:
|
Assert.notNull(clientOutboundChannel, "'clientInboundChannel' must not be null"); |
The constructor in
org.springframework.messaging.simp.config.AbstractBrokerRegistrationchecks the non-nullness of theclientOutboundChannelparameter twice but does not check the non-nullness of theclientInboundChannelparameter.See:
spring-framework/spring-messaging/src/main/java/org/springframework/messaging/simp/config/AbstractBrokerRegistration.java
Line 48 in 959e6d1