diff --git a/spring-cloud-context/src/main/java/org/springframework/cloud/bootstrap/config/BootstrapPropertySource.java b/spring-cloud-context/src/main/java/org/springframework/cloud/bootstrap/config/BootstrapPropertySource.java index 3de3821a..91a9b7fd 100644 --- a/spring-cloud-context/src/main/java/org/springframework/cloud/bootstrap/config/BootstrapPropertySource.java +++ b/spring-cloud-context/src/main/java/org/springframework/cloud/bootstrap/config/BootstrapPropertySource.java @@ -33,7 +33,7 @@ public class BootstrapPropertySource extends EnumerablePropertySource { private PropertySource delegate; - BootstrapPropertySource(PropertySource delegate) { + public BootstrapPropertySource(PropertySource delegate) { super(BOOTSTRAP_PROPERTY_SOURCE_NAME + "-" + delegate.getName(), delegate.getSource()); this.delegate = delegate;