From cfaf813da87b3ea219390917069a98ca2e74bca2 Mon Sep 17 00:00:00 2001 From: Johnny Lim Date: Sun, 18 Oct 2015 14:09:53 +0900 Subject: [PATCH] Remove unnecessary statement Closes gh-4222 --- .../springframework/boot/bind/PropertySourcesPropertyValues.java | 1 - 1 file changed, 1 deletion(-) diff --git a/spring-boot/src/main/java/org/springframework/boot/bind/PropertySourcesPropertyValues.java b/spring-boot/src/main/java/org/springframework/boot/bind/PropertySourcesPropertyValues.java index ac329a6bfcf..d1d4b6d4097 100644 --- a/spring-boot/src/main/java/org/springframework/boot/bind/PropertySourcesPropertyValues.java +++ b/spring-boot/src/main/java/org/springframework/boot/bind/PropertySourcesPropertyValues.java @@ -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);