Browse Source

Increase visibility of MapPropertySource constructor

Was protected due to oversight, now public.

Issue: SPR-8107
pull/7/head
Chris Beams 15 years ago
parent
commit
006cbb25c5
  1. 2
      org.springframework.core/src/main/java/org/springframework/core/env/MapPropertySource.java

2
org.springframework.core/src/main/java/org/springframework/core/env/MapPropertySource.java vendored

@ -27,7 +27,7 @@ import java.util.Map; @@ -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