Fix code smell in websocket and webflux modules (#2669)
* * Fix code smell in websocket and webflux modules * * More fixes * * Fix NPE in the `IntegrationHandlerResultHandler`
This commit is contained in:
committed by
Gary Russell
parent
e8bd31cc37
commit
8ce8bf9d73
@@ -53,7 +53,7 @@ public class PayloadTypeConvertingTransformer<T, U> extends AbstractPayloadTrans
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onInit() throws Exception {
|
||||
protected void onInit() throws Exception { // NOSONAR thrown by super class
|
||||
super.onInit();
|
||||
Assert.notNull(this.converter, () -> getClass().getName() + " requires a Converter<Object, Object>");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user