提交 5d8de5c4 编写于 作者: S Sam Brannen

polishing

上级 726e9208
......@@ -23,8 +23,8 @@ import org.springframework.util.Assert;
/**
* Default implementation of the {@link PropertySources} interface.
* Allows manipulation of contained property sources and provides constructor
* to copying an existing {@code PropertySources} instance.
* Allows manipulation of contained property sources and provides a constructor
* for copying an existing {@code PropertySources} instance.
*
* <p>Where <em>precedence</em> is mentioned in methods such as {@link #addFirst}
* and {@link #addLast}, this is with regard to the order in which property sources
......@@ -41,7 +41,6 @@ public class MutablePropertySources implements PropertySources {
private final LinkedList<PropertySource<?>> propertySourceList = new LinkedList<PropertySource<?>>();
/**
* Create a new {@link MutablePropertySources} object.
*/
......@@ -105,7 +104,7 @@ public class MutablePropertySources implements PropertySources {
assertLegalRelativeAddition(relativePropertySourceName, propertySource);
removeIfPresent(propertySource);
int index = assertPresentAndGetIndex(relativePropertySourceName);
addAtIndex(index+1, propertySource);
addAtIndex(index + 1, propertySource);
}
/**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册