The 'method' and 'attributes' properties are now final.

This commit is contained in:
Mark Fisher
2008-04-03 21:52:46 +00:00
parent eb8b5666c8
commit 11d934c4a8

View File

@@ -44,11 +44,11 @@ public class RouterMessageHandlerAdapter extends AbstractMessageHandlerAdapter i
private static final String ATTRIBUTE_KEY = "attribute";
private Method method;
private final Method method;
private Map<String, ?> attributes;
private final Map<String, ?> attributes;
private ChannelRegistry channelRegistry;
private volatile ChannelRegistry channelRegistry;
public RouterMessageHandlerAdapter(Object object, Method method, Map<String, ?> attributes) {