Increase visibility of MapPropertySource constructor

Was protected due to oversight, now public.

Issue: SPR-8107

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@4148 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Chris Beams 2011-03-31 12:29:32 +00:00
parent 9e8259198f
commit 2de526d31e
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ import java.util.Map;
*/
public class MapPropertySource extends EnumerablePropertySource<Map<String, Object>> {
protected MapPropertySource(String name, Map<String, Object> source) {
public MapPropertySource(String name, Map<String, Object> source) {
super(name, source);
}