mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
Increase visibility of MapPropertySource constructor
Was protected due to oversight, now public. Issue: SPR-8107
This commit is contained in:
+1
-1
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user