Increase visibility of MapPropertySource constructor

Was protected due to oversight, now public.

Issue: SPR-8107
This commit is contained in:
Chris Beams
2011-03-31 12:29:32 +00:00
parent f5768fe00b
commit 006cbb25c5

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);
}