Browse Source

Making constructor public

pull/705/head
Ryan Baxter 5 years ago
parent
commit
fdfc0d5e9f
  1. 2
      spring-cloud-context/src/main/java/org/springframework/cloud/bootstrap/config/BootstrapPropertySource.java

2
spring-cloud-context/src/main/java/org/springframework/cloud/bootstrap/config/BootstrapPropertySource.java

@ -33,7 +33,7 @@ public class BootstrapPropertySource<T> extends EnumerablePropertySource<T> { @@ -33,7 +33,7 @@ public class BootstrapPropertySource<T> extends EnumerablePropertySource<T> {
private PropertySource<T> delegate;
BootstrapPropertySource(PropertySource<T> delegate) {
public BootstrapPropertySource(PropertySource<T> delegate) {
super(BOOTSTRAP_PROPERTY_SOURCE_NAME + "-" + delegate.getName(),
delegate.getSource());
this.delegate = delegate;

Loading…
Cancel
Save