Making constructor public

This commit is contained in:
Ryan Baxter
2020-02-27 12:18:08 -05:00
parent 8127bab974
commit fdfc0d5e9f

View File

@@ -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;