mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-07-03 09:12:15 +00:00
Changed to be compatible with Spring 2.5. ManagedMap no longer has a constructor taking a map.
This commit is contained in:
parent
ad92dbf389
commit
a458d21b9f
@ -60,7 +60,10 @@ class FilterChainMapBeanDefinitionDecorator implements BeanDefinitionDecorator {
|
||||
}
|
||||
}
|
||||
|
||||
filterChainProxy.getPropertyValues().addPropertyValue("filterChainMap", new ManagedMap(filterChainMap));
|
||||
ManagedMap map = new ManagedMap(filterChainMap.size());
|
||||
map.putAll(filterChainMap);
|
||||
|
||||
filterChainProxy.getPropertyValues().addPropertyValue("filterChainMap", map);
|
||||
|
||||
return holder;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user