Skip to content

Commit 006cbb2

Browse files
committed
Increase visibility of MapPropertySource constructor
Was protected due to oversight, now public. Issue: SPR-8107
1 parent f5768fe commit 006cbb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
*/
2828
public class MapPropertySource extends EnumerablePropertySource<Map<String, Object>> {
2929

30-
protected MapPropertySource(String name, Map<String, Object> source) {
30+
public MapPropertySource(String name, Map<String, Object> source) {
3131
super(name, source);
3232
}
3333

0 commit comments

Comments
 (0)