From 006cbb25c53301b71a39b41cfb1609212c8bba96 Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Thu, 31 Mar 2011 12:29:32 +0000 Subject: [PATCH] Increase visibility of MapPropertySource constructor Was protected due to oversight, now public. Issue: SPR-8107 --- .../java/org/springframework/core/env/MapPropertySource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.springframework.core/src/main/java/org/springframework/core/env/MapPropertySource.java b/org.springframework.core/src/main/java/org/springframework/core/env/MapPropertySource.java index 05eec72261..4d744071be 100644 --- a/org.springframework.core/src/main/java/org/springframework/core/env/MapPropertySource.java +++ b/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> { - protected MapPropertySource(String name, Map source) { + public MapPropertySource(String name, Map source) { super(name, source); }