Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
*
* @author Artem Bilan
* @author Gary Russell
* @author Glenn Renfro
*
* @since 5.0
*/
Expand Down Expand Up @@ -254,6 +255,7 @@ void addMapping(Object key, NamedComponent channel) {
}

@Override
@SuppressWarnings("NullAway") // Performance
protected void onInit() {
super.onInit();
ConversionService conversionService = getConversionService();
Expand All @@ -273,7 +275,6 @@ else if (conversionService.canConvert(key.getClass(), String.class)) {
throw new MessagingException("Unsupported channel mapping type for router ["
+ key.getClass() + "]");
}

this.router.setChannelMapping(channelKey, entry.getValue().getComponentName());
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,7 @@ public static final class CommandMethod {

private final Class<?>[] parameterTypes;

@SuppressWarnings("NullAway.Init")
private String description;

private CommandMethod(String beanName, String methodName, Class<?>[] parameterTypes) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* Provides classes related to management support.
*/
@org.jspecify.annotations.NullMarked
package org.springframework.integration.support.management;