Commit f929af32 authored by Stephane Nicoll's avatar Stephane Nicoll

Merge pull request #4222 from izeye/patch-42

* pr/4222:
  Remove unnecessary statement
parents 8ad02024 cfaf813d
......@@ -198,7 +198,6 @@ public class PropertySourcesPropertyValues implements PropertyValues {
PropertySource<?> collectionOwner = this.collectionOwners.putIfAbsent(
COLLECTION_PROPERTY.matcher(propertyName).replaceAll("[]"), source);
if (collectionOwner == null || collectionOwner == source) {
this.collectionOwners.get(this.collectionOwners);
PropertyValue propertyValue = new OriginCapablePropertyValue(propertyName,
value, propertyName, source);
this.propertyValues.put(propertyName, propertyValue);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment