Merge pull request #4222 from izeye/patch-42

* pr/4222:
  Remove unnecessary statement
pull/4207/merge
Stephane Nicoll 9 years ago
commit f929af32d6

@ -198,7 +198,6 @@ public class PropertySourcesPropertyValues implements PropertyValues {
PropertySource<?> collectionOwner = this.collectionOwners.putIfAbsent( PropertySource<?> collectionOwner = this.collectionOwners.putIfAbsent(
COLLECTION_PROPERTY.matcher(propertyName).replaceAll("[]"), source); COLLECTION_PROPERTY.matcher(propertyName).replaceAll("[]"), source);
if (collectionOwner == null || collectionOwner == source) { if (collectionOwner == null || collectionOwner == source) {
this.collectionOwners.get(this.collectionOwners);
PropertyValue propertyValue = new OriginCapablePropertyValue(propertyName, PropertyValue propertyValue = new OriginCapablePropertyValue(propertyName,
value, propertyName, source); value, propertyName, source);
this.propertyValues.put(propertyName, propertyValue); this.propertyValues.put(propertyName, propertyValue);

Loading…
Cancel
Save