Increase visibility of MapPropertySource constructor

Was protected due to oversight, now public.

Issue: SPR-8107
master
Chris Beams 14 years ago
parent f5768fe00b
commit 006cbb25c5
  1. 2
      org.springframework.core/src/main/java/org/springframework/core/env/MapPropertySource.java

@ -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…
Cancel
Save