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:
parent
9e8259198f
commit
2de526d31e
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue