MutablePropertySources.from constructor
MutablePropertySources.from(
- PropertySources propertySources
Creates a new instance from an existing PropertySources collection.
All sources are added with the same ordering.
Implementation
MutablePropertySources.from(PropertySources propertySources) {
for (PropertySource source in propertySources) {
addLast(source);
}
}