From fdfc0d5e9fe96b1184fe9b500baabf708a170e7c Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Thu, 27 Feb 2020 12:18:08 -0500 Subject: [PATCH] Making constructor public --- .../cloud/bootstrap/config/BootstrapPropertySource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;